:root{
  --badge-bg: #0f7699;     /* farba krúžku */
  --badge-fg: #fff;        /* farba čísla */
  --h2-bg:   #eef7ff;      /* jemné pozadie za prvým H2 */
}


/* štýl pre PRVÝ h2 v obsahu */
.blog-content h2:first-of-type{
  position: relative;
  background: var(--h2-bg);
  border-radius: 10px;
  padding: 14px 16px 14px 56px; /* miesto pre krúžok vľavo */
  margin: 18px 0;
}

/* „1“ v krúžku */
.blog-content h2:first-of-type::before{
  content: "1";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--badge-bg);
  color: var(--badge-fg);
  font-weight: 700;
  line-height: 1;
}


/* spoločný štýl pre číslované nadpisy mimo obsahu */
.blog-step {
  position: relative;
  background: var(--h2-bg);
  border-radius: 10px;
  padding: 14px 16px 14px 56px;
  margin: 30px 0 20px;
}

/* „2“ v krúžku */
.blog-step::before {
  content: "2";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--badge-bg);
  color: var(--badge-fg);
  font-weight: 700;
  line-height: 1;
}

/* spoločný štýl pre číslované nadpisy mimo obsahu */
.blog-step3 {
  position: relative;
  background: var(--h2-bg);
  border-radius: 10px;
  padding: 14px 16px 14px 56px;
  margin: 30px 0 20px;
}

/* „2“ v krúžku */
.blog-step3::before {
  content: "3";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--badge-bg);
  color: var(--badge-fg);
  font-weight: 700;
  line-height: 1;
}

/* ✅ 4️⃣ Varianta bez čísla */
.blog-step-box {
  position: relative;
  background: var(--h2-bg);
  border-radius: 10px;
  padding: 20px;
  margin: 30px 0 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.blog-step-box h2 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--h2-fg, #0b132b);
  font-size: 1.3em;
  font-weight: 700;
}

.blog-step-box p {
  margin: 0;
  color: #333;
  line-height: 1.1;
  font-size: 1.05em;
  padding:15px 0 15px 0;
}

.blog-result-box {
  position: relative;
  border-radius: 10px;
  padding: 20px;
  margin: 30px 0 30px;
  border: 2px solid #eef7ff;
}
.teaser_points {
margin:10px 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.cta-box-1 {
  background: #f5f5f5;              /* šedé pozadie */
  border-left: 6px solid #00a04f;   /* zelený ľavý okraj */
  padding: 5px 15px 5px 10px;
  margin: 20px 0;
  align-items: center;
  font-size: 16px;
  border-radius: 4px; /* jemne zaoblené rohy */
  width: 100%;
  text-align:left;
  box-sizing: border-box;
}
.cta-box-1 h3
{
margin-bottom:0;
}


.tag-intro {
    margin-bottom: 30px;

}
.tag-box-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

  .loading-bar-container {
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e6e6e6;
    overflow: hidden;
  }

  .loading-bar {
  top: 0;
    width: 0;
    height: 100%;
    background-color: #00a04f;
    animation: load 0.1s ease-in-out forwards;
  }

  @keyframes load {
    0% { width: 0; }
    100% { width: 100%; }
  }

  .loading-text {
    margin-top: 60px;
    font-size: 1.1rem;
    color: #00a04f;
  }
  
  
  
  
    .hidden { display: none; }
  .progress-container {
    max-width: 420px;
    margin: 60px auto;
    text-align: center;
    background: #f4f4f4;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    width: 100%;
    
  }
  .progress-text {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
  }
  .progress-bar {
    width: 100%;
    height: 14px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
  }
  .progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6cb3ff, #0066ff);
    transition: width 0.4s ease;
  }
  .teaser-container {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    line-height: 1.6;
  }
 