/* ===========================
   FAT ARTICLE TEMPLATE
   =========================== */

.fat-article{
  --radius:22px;
}

/* PROGRESS */
.article-progress{
  position:fixed;
  top:0;
  left:0;
  height:3px;
  width:0;
  background:var(--primary);
  z-index:9999;
}

/* HERO */
.article-hero{
  position:relative;
  min-height:420px;
  background-size:cover;
  background-position:center;
}

.article-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(13,42,69,.55),
    rgba(13,42,69,.85)
  );
}

.article-hero-inner{
  position:relative;
  padding:120px 20px 80px;
  max-width:900px;
  margin:0 auto;
  color:#fff;
}

.article-title{
  font-size:clamp(36px,5vw,56px);
  line-height:1.15;
  margin:0 0 14px;
}

.article-subtitle{
  font-size:18px;
  opacity:.9;
}

/* GRID */
.article-content{
  padding:72px 0 110px;
}

.article-grid{
  display:grid;
  grid-template-columns:minmax(0,1.7fr) minmax(0,1fr);
  gap:64px;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* BODY */
.article-body{
  font-size:18px;
  line-height:1.8;
}

.article-body h2{
  font-size:clamp(28px,3vw,36px);
  margin:64px 0 20px;
}

.article-body h2::after{
  content:"";
  display:block;
  width:64px;
  height:3px;
  background:var(--primary);
  margin-top:10px;
}

/* SIDEBAR */
.article-sidebar{
  position: static;
}

/* ===========================
   CTA BLOCK (NEW)
   =========================== */

.article-cta{
  background:linear-gradient(
    180deg,
    rgba(98,208,201,.18),
    rgba(232,220,196,.28)
  );
  border-radius:26px;
  padding:30px 32px 32px;
  box-shadow:0 26px 64px rgba(0,0,0,.14);
  position: sticky;
  top:120px;
}

/* CTA HEAD */
.article-cta-head{
  margin-bottom:18px;
}

.article-cta-badge{
  display:inline-block;
  margin-bottom:10px;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(98,208,201,.35);
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#0D2A45;
}

.article-cta-title{
  margin:0;
  font-size:24px;
  line-height:1.25;
  font-weight:800;
  letter-spacing:-.01em;
}

/* CTA TEXT */
.article-cta-text{
  margin:20px 0 24px;
  font-size:15px;
  line-height:1.6;
  opacity:.9;
}

/* CTA BUTTON */
.article-cta-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  height:58px;
  border-radius:999px;
  background:var(--primary);
  color:#0D2A45;
  font-size:16px;
  font-weight:800;
  letter-spacing:.02em;
  text-decoration:none;
  box-shadow:0 20px 48px rgba(98,208,201,.55);
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.article-cta-btn:hover{
  transform:translateY(-2px);
  background:#59d5cd;
  box-shadow:0 28px 64px rgba(98,208,201,.7);
}

/* CTA FOOT */
.article-cta-foot{
  margin-top:16px;
  text-align:center;
  font-size:12px;
  font-weight:600;
  opacity:.7;
}

/* ===========================
   RELATED ARTICLES
   =========================== */

.article-related{
  padding:90px 0;
}

.related-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

.related-card{
  display:block;
  padding:28px 30px 32px;
  border-radius:22px;
  background:#fff;
  box-shadow:0 16px 36px rgba(0,0,0,.1);
  text-decoration:none;
  color:var(--dark);
  transition:transform .15s ease, box-shadow .15s ease;
}

.related-card:hover{
  transform:translateY(-4px);
  box-shadow:0 26px 60px rgba(0,0,0,.16);
}

.related-title{
  font-size:20px;
  font-weight:800;
  line-height:1.3;
  margin:0 0 12px;
}

.related-excerpt{
  font-size:14px;
  line-height:1.6;
  opacity:.85;
  margin:0 0 14px;
}

.related-read-more{
  font-size:13px;
  font-weight:800;
  color:var(--primary);
}

/* RESPONSIVE */
@media (max-width:992px){
  .article-grid{
    grid-template-columns:1fr;
  }
  .article-sidebar{
    position:static;
    margin-top:48px;
  }
}


/* ===========================
   RELATED — RESPONSIVE FIX
   =========================== */

/* TABLET */
@media (max-width:992px){
  .related-grid{
    grid-template-columns:repeat(2,1fr);
    gap:22px;
  }
}

/* MOBILE */
@media (max-width:576px){
  .article-related{
    padding:64px 0;
  }

  .related-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .related-card{
    padding:22px 22px 24px;
  }

  .related-title{
    font-size:18px;
  }

  .related-excerpt{
    font-size:14px;
  }
}




.fat-article,
.article-content,
.article-grid{
  overflow: visible !important;
}
