: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 22px;
  margin: 30px 0 20px;
  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.6;
  font-size: 1.05em;
}


@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;
  }
  
  
  
.teaser-text{padding:0 20px;line-height: 1.7;}


.teaser-text ul {
  list-style: none;
  counter-reset: teaser-counter;
  margin: 16px 0 20px;
  padding: 0;
}

.teaser-text li {
  counter-increment: teaser-counter;
  position: relative;
  margin-bottom: 14px;
  padding-left: 42px;
  line-height: 1.6;
}

.teaser-text li::before {
  content: counter(teaser-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #007bff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
small {
  display: block;
  color: #777;
  margin-top: 5px;
  font-size: 0.9rem;
  text-align:center;
}



.fallback-block {
  background: #f9fbff;
  border: 1px solid #e6eef9;
  border-radius: 12px;
  padding: 28px 24px;
  margin: 50px 0 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.fallback-block h3 {
  color: #004a9f;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.fallback-block p {
  margin-bottom: 16px;
  line-height: 1.6;
}



.fallback-block .note {
  font-size: 0.9em;
  color: #666;
  margin-top: 10px;
}
