/* ==========================================================================
   JellyBoost — Affiliate Sales Funnel
   Original design system. Mobile-first.
   ========================================================================== */

:root {
  --navy-950: #060c1e;
  --navy-900: #0a1630;
  --navy-800: #0e1c40;
  --navy-700: #16295e;
  --navy-600: #1f3778;
  --blue-500: #2f6ef6;
  --blue-400: #5892ff;
  --blue-100: #e8f0ff;
  --gold-500: #f5b301;
  --gold-400: #ffd23f;
  --gold-700: #8a5c00;
  --white: #ffffff;
  --gray-50: #f6f8fc;
  --gray-100: #eef1f8;
  --gray-200: #dde3f0;
  --gray-500: #5b6478;
  --gray-600: #47506a;
  --gray-700: #313a52;
  --green-600: #1f9d55;
  --border: #e3e8f4;
  --shadow-sm: 0 2px 8px rgba(10, 22, 48, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 22, 48, 0.1);
  --shadow-lg: 0 16px 48px rgba(10, 22, 48, 0.16);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container-w: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; font-weight: 800; color: var(--navy-900); letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 56px 0; }
.section-tight { padding: 36px 0; }
.bg-light { background: var(--gray-50); }
.bg-navy { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-white { background: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: var(--blue-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.bg-navy .eyebrow { background: rgba(255,255,255,0.1); color: var(--gold-400); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(26px, 4vw, 36px); }
.section-head p { color: var(--gray-500); font-size: 17px; }
.bg-navy .section-head p { color: #b9c4e0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  padding: 17px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  line-height: 1.2;
}
.btn-primary {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(245, 179, 1, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.03); box-shadow: 0 14px 30px rgba(245, 179, 1, 0.45); }
.btn-block { width: 100%; }
.btn-lg { padding: 20px 36px; font-size: 17.5px; }
.btn-sub {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 10px;
  font-weight: 600;
}
.bg-navy .btn-sub { color: #a9b6d8; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 22, 48, 0.97);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--blue-400); }
.header-cta {
  padding: 11px 20px;
  font-size: 14px;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(47,110,246,0.28), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 44px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(30px, 6vw, 48px);
  margin-bottom: 16px;
}
.hero-copy .lede {
  font-size: 18px;
  color: #c3ccea;
  max-width: 54ch;
  margin-bottom: 24px;
}
.hero-benefits {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
}
.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  color: #dfe5f7;
  font-weight: 600;
}
.check {
  flex: none;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--blue-500);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 1px;
}
.hero-media { text-align: center; position: relative; }
.hero-media img { max-width: 380px; margin: 0 auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45)); }
.hero-trustrow {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}
.hero-trustrow img { height: 46px; width: auto; opacity: 0.95; }

/* ---------- Quick trust strip ---------- */
.trust-strip { background: var(--navy-700); padding: 18px 0; }
.trust-strip ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
  max-width: var(--container-w);
  margin: 0 auto;
}
.trust-strip li {
  color: #e6ebf9;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-strip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-400); flex: none; }

/* ---------- Generic two-col ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}
.split img { border-radius: var(--radius-md); }
.split-media { text-align: center; }
.split-media img { max-width: 320px; margin: 0 auto; }

/* ---------- Benefit / feature cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--gray-500); font-size: 15px; margin: 0; }
.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.icon-circle svg { width: 24px; height: 24px; }

/* ---------- Ingredient cards ---------- */
.ingredient-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.ingredient-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.ingredient-head h3 { font-size: 17px; margin: 0; }
.ingredient-amt {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue-500);
  background: var(--blue-100);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.ingredient-card p { color: var(--gray-500); font-size: 14.5px; margin: 0; }

.formula-note {
  margin-top: 26px;
  background: var(--blue-100);
  border: 1px solid #cfe0ff;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 14px;
  color: var(--navy-800);
}

/* ---------- Steps (How to use) ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.step {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.step-num {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: 16px; margin-bottom: 4px; }
.step p { font-size: 14.5px; color: var(--gray-500); margin: 0; }

/* ---------- Badges row ---------- */
.badge-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  text-align: center;
}
.badge-row img { max-width: 78px; margin: 0 auto 8px; }
.badge-row span { display: block; font-size: 12.5px; font-weight: 700; color: var(--gray-600); }

.trust-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.trust-list { display: grid; gap: 12px; margin-top: 18px; }
.trust-list li { display: flex; gap: 10px; font-size: 15px; color: var(--gray-700); font-weight: 600; }

/* ---------- Pricing / Offer ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.price-card {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  border: 2px solid var(--navy-700);
  text-align: center;
}
.price-card.featured {
  border-color: var(--gold-500);
  background: linear-gradient(180deg, var(--navy-800), var(--navy-950));
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.price-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { color: var(--white); font-size: 16px; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.price-supply { color: #9fb0d9; font-size: 13px; margin-bottom: 16px; }
.price-card img { max-width: 150px; margin: 0 auto 16px; }
.price-per {
  font-size: 42px;
  font-weight: 900;
  color: var(--gold-400);
  line-height: 1;
}
.price-per span { font-size: 15px; color: #b9c4e0; font-weight: 700; }
.price-was {
  color: #7f8bb0;
  text-decoration: line-through;
  font-size: 14px;
  margin-top: 8px;
}
.price-total { font-size: 15px; color: #dfe5f7; font-weight: 700; margin-bottom: 4px; }
.price-save {
  display: inline-block;
  background: rgba(31,157,85,0.18);
  color: #58e08c;
  font-size: 12.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  margin: 8px 0 16px;
}
.price-ship { font-size: 12.5px; color: #9fb0d9; margin-bottom: 18px; }
.price-card .btn { width: 100%; }

.offer-footnote {
  text-align: center;
  color: var(--gray-500);
  font-size: 13.5px;
  margin-top: 24px;
}
.payment-row { text-align: center; margin-top: 20px; }
.payment-row img { max-width: 260px; margin: 0 auto; }

/* ---------- Guarantee ---------- */
.guarantee {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
}
.guarantee img { max-width: 150px; margin: 0 auto; }
.guarantee-copy h2 { font-size: 26px; }
.guarantee-copy p { color: var(--gray-500); }

/* ---------- Objection / mini QA ---------- */
.qa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.qa-item h3 { font-size: 15.5px; color: var(--navy-900); margin-bottom: 6px; }
.qa-item p { font-size: 14.5px; color: var(--gray-500); margin: 0; }

/* ---------- CTA break ---------- */
.cta-break {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
}
.cta-break img.bottle { max-width: 200px; margin: 0 auto 18px; }
.cta-break h2 { color: var(--white); font-size: clamp(22px, 4vw, 30px); }
.cta-break .lede { color: #c3ccea; max-width: 52ch; margin: 0 auto 20px; }
.cta-break-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  margin: 0 0 24px;
}
.cta-break-benefits li {
  font-size: 14px;
  font-weight: 700;
  color: #e6ebf9;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ---------- FAQ ---------- */
.accordion { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.accordion-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
}
.accordion-trigger .plus {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  transition: transform .2s ease;
}
.accordion-item[data-open="true"] .plus { transform: rotate(45deg); background: var(--gold-400); color: var(--navy-900); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.accordion-panel-inner { padding: 0 20px 18px; color: var(--gray-500); font-size: 14.5px; }

/* ---------- Final offer ---------- */
.final-offer {
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(47,110,246,0.25), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  text-align: center;
}
.final-offer img.bottle { max-width: 260px; margin: 0 auto 20px; }
.final-offer h2 { color: var(--white); font-size: clamp(26px, 5vw, 38px); }
.final-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin: 18px 0 28px;
  color: #dfe5f7;
  font-weight: 700;
  font-size: 14.5px;
}
.final-benefits li { display: flex; align-items: center; gap: 7px; }

/* ---------- Disclosure banner ---------- */
.disclosure-bar {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 12.5px;
  text-align: center;
  padding: 9px 16px;
}
.disclosure-bar a { color: var(--blue-500); font-weight: 700; text-decoration: none; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy-950);
  color: #9fb0d9;
  padding: 44px 0 100px;
  font-size: 13px;
}
footer.site-footer .logo { margin-bottom: 12px; display: inline-block; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 26px; margin-bottom: 26px; }
.footer-col h4 { color: #e6ebf9; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.footer-col p, .footer-col li { color: #8b98bd; line-height: 1.7; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; color: #7683a6; line-height: 1.7; }
.footer-legal p { margin-bottom: 12px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; margin-top: 18px; color: #6c7899; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(110%);
  transition: transform .25s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-copy { flex: 1; min-width: 0; }
.sticky-cta-copy strong { display: block; color: var(--white); font-size: 13.5px; }
.sticky-cta-copy span { color: #9fb0d9; font-size: 11.5px; }
.sticky-cta .btn { padding: 12px 20px; font-size: 14px; flex: none; }

@media (min-width: 768px) {
  .section { padding: 84px 0; }
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; }
  .hero-media img { max-width: 440px; }
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse { direction: rtl; }
  .split.reverse > * { direction: ltr; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid.two-col { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .badge-row { grid-template-columns: repeat(5, 1fr); }
  .guarantee { grid-template-columns: 220px 1fr; }
  .qa-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; }
  .trust-strip ul { grid-template-columns: repeat(3, 1fr); }
  .sticky-cta { display: none; }
}

@media (min-width: 1024px) {
  .hero-copy .lede { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ==========================================================================
   Blog / Cluster content
   ========================================================================== */

.site-header nav.main-nav {
  display: none;
  align-items: center;
  gap: 26px;
  margin-right: 24px;
}
.site-header nav.main-nav a {
  color: #c3ccea;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 700;
}
.site-header nav.main-nav a:hover { color: var(--white); }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
@media (min-width: 768px) {
  .site-header nav.main-nav { display: flex; }
}

.breadcrumb {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--blue-500); text-decoration: none; font-weight: 700; }
.breadcrumb span { margin: 0 6px; color: var(--gray-200); }

/* ---- Blog hub ---- */
.blog-hero {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 44px 0 40px;
  text-align: center;
}
.blog-hero h1 { color: var(--white); font-size: clamp(28px, 5vw, 42px); }
.blog-hero p { color: #c3ccea; max-width: 62ch; margin: 0 auto; font-size: 17px; }

.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.post-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: var(--blue-100);
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.post-card h2, .post-card h3 { font-size: 19px; margin-bottom: 8px; }
.post-card p { color: var(--gray-500); font-size: 14.5px; margin-bottom: 0; }
.post-meta { font-size: 12.5px; color: var(--gray-500); margin-top: 12px; font-weight: 600; }

/* ---- Article page ---- */
.article-hero {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 30px 0 40px;
}
.article-hero .breadcrumb { color: #9fb0d9; }
.article-hero .breadcrumb a { color: var(--gold-400); }
.article-hero .breadcrumb span { color: #4a5a86; }
.article-hero h1 { color: var(--white); font-size: clamp(28px, 5vw, 42px); max-width: 22ch; }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #9fb0d9;
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 14px;
}

.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 48px 0;
}
.article-body h2 { font-size: 24px; margin-top: 1.6em; }
.article-body h3 { font-size: 19px; margin-top: 1.4em; }
.article-body p { font-size: 16.5px; color: var(--gray-700); }
.article-body ul { list-style: disc; padding-left: 1.3em; margin-bottom: 1.2em; }
.article-body ul li { margin-bottom: .5em; font-size: 16.5px; color: var(--gray-700); }
.article-body strong { color: var(--navy-900); }

.callout {
  background: var(--blue-100);
  border: 1px solid #cfe0ff;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin: 28px 0;
}
.callout h3 { margin-top: 0; font-size: 16px; color: var(--navy-900); }
.callout p { font-size: 15px; margin-bottom: 0; color: var(--navy-800); }

.safety-note {
  background: #fff6e0;
  border: 1px solid #f2dfa0;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin: 24px 0;
  font-size: 15px;
  color: #6b5400;
}
.safety-note strong { color: #4a3900; }

.product-callout {
  background: linear-gradient(135deg, var(--navy-950), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  margin: 36px 0;
  text-align: center;
}
.product-callout img { max-width: 140px; margin: 0 auto 14px; }
.product-callout h3 { color: var(--white); font-size: 21px; }
.product-callout p { color: #c3ccea; font-size: 14.5px; max-width: 46ch; margin: 0 auto 18px; }

.disclaimer-box {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: var(--gray-500);
}

.related-posts { margin-top: 44px; }
.related-posts h2 { font-size: 21px; }
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .post-grid { grid-template-columns: repeat(3, 1fr); }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
}
