/* =========================================================================
   Reviews-Supplements.blog — Design System
   Fonts: Fraunces (display) + Manrope (text)
   ========================================================================= */

:root {
  /* Palette — botanical / trust */
  --bg: #FBF9F4;
  --surface: #FFFFFF;
  --surface-alt: #F1F5F0;
  --brand: #1E6A4C;
  --brand-dark: #123E2C;
  --brand-tint: #E5EFE9;
  --brand-tint-2: #D6E7DC;
  --accent: #C67B2C;
  --accent-dark: #A5641F;
  --accent-tint: #F6ECDC;
  --star: #E0A426;
  --ink: #17231D;
  --ink-soft: #33433B;
  --muted: #5E6E66;
  --muted-light: #8A9790;
  --line: #E8E7DF;
  --line-strong: #DAD9CF;
  --good: #1E7A54;
  --bad: #B4482F;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-text: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Shape */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Elevation (no side borders — soft shadows only) */
  --shadow-xs: 0 1px 2px rgba(20, 40, 30, 0.05);
  --shadow-sm: 0 2px 8px rgba(20, 40, 30, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 40, 30, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 40, 30, 0.12);

  --container: 1140px;
  --container-narrow: 760px;
}

/* ------------------------------ Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-text);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
ul, ol { padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --------------------------- Typography -------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.12rem; }
p { color: var(--ink-soft); }
strong { font-weight: 700; color: var(--ink); }

.eyebrow {
  font-family: var(--font-text);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.lede { font-size: 1.2rem; color: var(--muted); line-height: 1.6; }

/* ----------------------------- Layout ---------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-tint { background: var(--surface-alt); }
.section-brand { background: var(--brand-dark); color: #EAF2ED; }
.center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { margin-top: 12px; font-size: 1.08rem; color: var(--muted); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
}

/* ------------------------------ Icons ---------------------------------- */
.icon { width: 22px; height: 22px; stroke-width: 2; flex: none; }
.icon-sm { width: 18px; height: 18px; }
.icon-lg { width: 28px; height: 28px; }
.icon-chip {
  width: 48px; height: 48px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-tint); color: var(--brand);
}
.icon-chip.accent { background: var(--accent-tint); color: var(--accent-dark); }

/* ----------------------------- Buttons --------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--radius-pill);
  border: none; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-align: center;
}
.btn .icon { width: 19px; height: 19px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(198,123,44,0.28); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(198,123,44,0.34); }
.btn-brand { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(30,106,76,0.24); }
.btn-brand:hover { background: var(--brand-dark); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line-strong); }
.btn-ghost:hover { background: var(--surface); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--brand); }
.btn-light { background: #fff; color: var(--brand-dark); }
.btn-light:hover { background: #f3f3ef; color: var(--brand-dark); transform: translateY(-2px); }
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 18px 34px; font-size: 1.08rem; }

/* ----------------------------- Cards ----------------------------------- */
/* No side/accent borders — soft surface + shadow only */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition: transform .18s ease, box-shadow .25s ease;
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-flush { padding: 0; overflow: hidden; }

/* Product / review card */
.product-card { display: flex; flex-direction: column; height: 100%; }
.product-card .pc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.product-card .pc-cat {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-tint); padding: 5px 11px; border-radius: var(--radius-pill);
}
.product-card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.product-card p { font-size: 0.98rem; color: var(--muted); flex: 1; }
.product-card .pc-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
}
.pc-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--brand); font-size: 0.96rem; }
.pc-link .icon { width: 17px; height: 17px; transition: transform .15s ease; }
.product-card:hover .pc-link .icon { transform: translateX(3px); }

/* Rating */
.rating { display: inline-flex; align-items: center; gap: 8px; }
.stars { display: inline-flex; gap: 1px; color: var(--star); }
.stars .icon { width: 17px; height: 17px; fill: var(--star); stroke: var(--star); }
.stars .empty { fill: none; stroke: #D9D6C9; }
.rating .score { font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }
.rating .score small { font-weight: 600; color: var(--muted-light); }

/* Pills / badges */
.pill { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600;
  padding: 6px 13px; border-radius: var(--radius-pill); background: var(--surface-alt); color: var(--ink-soft); }
.pill .icon { width: 15px; height: 15px; }
.pill-brand { background: var(--brand-tint); color: var(--brand-dark); }
.pill-accent { background: var(--accent-tint); color: var(--accent-dark); }

/* ------------------------------ Header --------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,249,244,0.86);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 1.24rem; color: var(--ink); letter-spacing: -0.01em; }
.brand:hover { color: var(--ink); }
.brand-mark { width: 38px; height: 38px; border-radius: 11px; background: var(--brand); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-xs); }
.brand-mark .icon { width: 22px; height: 22px; }
.brand small { display: block; font-family: var(--font-text); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-light); font-weight: 700; margin-top: 1px; }
.brand .brand-name { line-height: 1; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a { color: var(--ink-soft); font-weight: 600; font-size: 0.98rem; padding: 9px 14px; border-radius: var(--radius-pill); }
.nav a:hover { color: var(--brand-dark); background: var(--brand-tint); }
.nav a.active { color: var(--brand-dark); background: var(--brand-tint); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: transparent; border: none; color: var(--ink); padding: 8px; border-radius: 10px; }
.nav-toggle:hover { background: var(--surface-alt); }

@media (max-width: 900px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open {
    display: flex; position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--surface); padding: 14px 18px 20px;
    box-shadow: var(--shadow-md); border-bottom: 1px solid var(--line);
  }
  .nav.open a { padding: 13px 14px; }
}

/* ------------------------------ Hero ----------------------------------- */
.hero { position: relative; overflow: hidden; padding: 84px 0 72px; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(30,106,76,0.10), transparent 60%),
    radial-gradient(50% 50% at 8% 90%, rgba(198,123,44,0.08), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero .lede { margin-bottom: 30px; max-width: 34ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); }
.hero-trust .icon { color: var(--brand); width: 19px; height: 19px; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } .hero .lede { max-width: none; } }

/* Hero visual card stack */
.hero-visual { position: relative; }
.hero-visual .card { padding: 24px; }
.stat-card { display: flex; align-items: center; gap: 16px; }
.stat-card .n { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--brand-dark); line-height: 1; }
.stat-card .l { font-size: 0.9rem; color: var(--muted); }
.hero-visual .float-badge {
  position: absolute; right: -8px; top: -18px; background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.9rem;
}
.hero-visual .float-badge .icon-chip { width: 38px; height: 38px; border-radius: 11px; }

/* ------------------------ Feature / process ---------------------------- */
.feature { text-align: left; }
.feature .icon-chip { margin-bottom: 16px; }
.feature h3 { font-size: 1.24rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.98rem; }

.step { position: relative; }
.step .step-n { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: #fff; background: var(--brand); width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }

/* --------------------------- Category nav ------------------------------ */
.cat-block { margin-bottom: 52px; }
.cat-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.cat-head h3 { font-size: 1.5rem; }
.cat-head .icon-chip { width: 44px; height: 44px; }
.cat-head .count { margin-left: auto; font-size: 0.85rem; font-weight: 600; color: var(--muted-light); }

/* ----------------------------- Breadcrumb ------------------------------ */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--muted); padding: 20px 0 4px; }
.crumbs a { color: var(--muted); font-weight: 600; }
.crumbs a:hover { color: var(--brand); }
.crumbs .sep { color: var(--muted-light); }
.crumbs span[aria-current] { color: var(--ink-soft); font-weight: 600; }

/* --------------------------- Review layout ----------------------------- */
.review-hero { padding: 24px 0 8px; }
.review-hero .rh-cat { margin-bottom: 14px; }
.review-hero h1 { max-width: 20ch; margin-bottom: 16px; }
.review-hero .lede { max-width: 62ch; }
.review-meta { display: flex; flex-wrap: wrap; gap: 18px 26px; align-items: center; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.review-meta .rm-item { display: flex; align-items: center; gap: 9px; font-size: 0.92rem; color: var(--ink-soft); font-weight: 600; }
.review-meta .icon { color: var(--brand); width: 18px; height: 18px; }

.review-body { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; padding: 40px 0 20px; }
@media (max-width: 960px) { .review-body { grid-template-columns: 1fr; gap: 32px; } }

.prose > * + * { margin-top: 1.15rem; }
.prose h2 { margin-top: 2.4rem; margin-bottom: 0.6rem; padding-top: 0.4rem; }
.prose h3 { margin-top: 1.6rem; margin-bottom: 0.3rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul.ticks li, .prose ul.plain li { position: relative; padding-left: 30px; margin-top: 10px; }
.prose ul.ticks li .icon { position: absolute; left: 0; top: 3px; width: 19px; height: 19px; color: var(--good); }
.prose a { text-decoration: underline; text-underline-offset: 2px; }

/* Verdict / summary box */
.verdict-box { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 26px; }
.verdict-box .vb-score { display: flex; align-items: center; gap: 16px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }
.vb-score .big { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--brand-dark); line-height: 1; }
.vb-score .big small { font-size: 1rem; color: var(--muted-light); font-weight: 600; }
.vb-verdict { font-size: 0.86rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent-dark); }

.score-rows { display: flex; flex-direction: column; gap: 12px; }
.score-row { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; align-items: center; font-size: 0.9rem; }
.score-row .label { color: var(--ink-soft); font-weight: 600; }
.score-row .bar { grid-column: 1 / -1; height: 7px; border-radius: 5px; background: var(--surface-alt); overflow: hidden; }
.score-row .bar span { display: block; height: 100%; border-radius: 5px; background: linear-gradient(90deg, var(--brand), var(--brand)); }
.score-row .val { font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }

/* Sidebar */
.review-aside { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 960px) { .review-aside { position: static; } }
.buy-card { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 24px; text-align: center; }
.buy-card h4 { font-size: 1.15rem; margin-bottom: 4px; }
.buy-card .price { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--brand-dark); margin: 8px 0 2px; }
.buy-card .price small { font-size: 0.9rem; color: var(--muted); font-weight: 600; font-family: var(--font-text); }
.buy-card .guarantee { font-size: 0.86rem; color: var(--muted); margin-top: 12px; display: inline-flex; align-items: center; gap: 7px; }
.buy-card .guarantee .icon { width: 16px; height: 16px; color: var(--brand); }
.buy-card .disc { font-size: 0.72rem; color: var(--muted-light); margin-top: 14px; }

/* Pros / cons */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) { .proscons { grid-template-columns: 1fr; } }
.pc-box { border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-xs); }
.pc-box.pros { background: #EEF6F0; }
.pc-box.cons { background: #FaF0EC; }
.pc-box h4 { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; font-family: var(--font-text); font-weight: 800; font-size: 1.05rem; }
.pc-box.pros h4 .icon { color: var(--good); }
.pc-box.cons h4 .icon { color: var(--bad); }
.pc-box li { position: relative; padding-left: 27px; margin-top: 10px; font-size: 0.95rem; color: var(--ink-soft); }
.pc-box li .icon { position: absolute; left: 0; top: 3px; width: 18px; height: 18px; }
.pc-box.pros li .icon { color: var(--good); }
.pc-box.cons li .icon { color: var(--bad); }

/* Ingredients table */
.ingredients { display: flex; flex-direction: column; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xs); background: var(--surface); }
.ing-row { display: grid; grid-template-columns: 200px 1fr; gap: 18px; padding: 16px 20px; }
.ing-row + .ing-row { border-top: 1px solid var(--line); }
.ing-row .ing-name { font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 9px; }
.ing-row .ing-name .icon { color: var(--brand); width: 18px; height: 18px; }
.ing-row .ing-desc { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 620px) { .ing-row { grid-template-columns: 1fr; gap: 4px; } }

/* Pricing tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 620px) { .tiers { grid-template-columns: 1fr; } }
.tier { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-xs); padding: 22px; text-align: center; position: relative; }
.tier.best { box-shadow: var(--shadow-md); }
.tier .tag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill); white-space: nowrap; }
.tier .t-name { font-weight: 700; color: var(--ink); }
.tier .t-price { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--brand-dark); margin: 6px 0 2px; }
.tier .t-sub { font-size: 0.82rem; color: var(--muted); }

/* FAQ */
.faq { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-xs); background: var(--surface); }
.faq details { border-top: 1px solid var(--line); }
.faq details:first-child { border-top: none; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { transition: transform .2s ease; color: var(--brand); flex: none; }
.faq details[open] summary .icon { transform: rotate(180deg); }
.faq .faq-a { padding: 0 22px 20px; color: var(--ink-soft); }

/* Callouts */
.callout { border-radius: var(--radius); padding: 20px 22px; display: flex; gap: 14px; align-items: flex-start; box-shadow: var(--shadow-xs); }
.callout .icon { flex: none; margin-top: 2px; }
.callout p { font-size: 0.95rem; margin: 0; }
.callout.brand { background: var(--brand-tint); }
.callout.brand .icon { color: var(--brand); }
.callout.warn { background: var(--accent-tint); }
.callout.warn .icon { color: var(--accent-dark); }
.callout.neutral { background: var(--surface-alt); }
.callout.neutral .icon { color: var(--muted); }

.disclaimer-mini { font-size: 0.82rem; color: var(--muted-light); line-height: 1.55; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--brand-dark), var(--brand)); color: #EAF2ED; border-radius: var(--radius-lg); padding: 44px; text-align: center; box-shadow: var(--shadow-md); }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 52ch; margin: 0 auto 24px; }

/* ------------------------------ Blog ----------------------------------- */
.post-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; }
.post-card .pc-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card .kicker { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 10px; }
.post-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.post-card p { color: var(--muted); font-size: 0.96rem; flex: 1; }
.post-card .meta { margin-top: 16px; font-size: 0.84rem; color: var(--muted-light); display: flex; gap: 14px; }

.article { padding: 20px 0 40px; }
.article-head { max-width: var(--container-narrow); margin: 0 auto; text-align: center; padding: 20px 0 8px; }
.article-head h1 { margin: 16px 0; }
.article-head .byline { display: inline-flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--muted); justify-content: center; flex-wrap: wrap; }
.article-head .byline .dot { color: var(--muted-light); }
.article-content { max-width: var(--container-narrow); margin: 36px auto 0; }
.article-content > * + * { margin-top: 1.3rem; }
.article-content h2 { margin-top: 2.6rem; margin-bottom: 0.4rem; }
.article-content h3 { margin-top: 1.8rem; }
.article-content p, .article-content li { color: var(--ink-soft); font-size: 1.06rem; line-height: 1.75; }
.article-content ul.ticks li { position: relative; padding-left: 30px; margin-top: 12px; }
.article-content ul.ticks li .icon { position: absolute; left: 0; top: 4px; color: var(--brand); width: 20px; height: 20px; }
.article-content blockquote { border-radius: var(--radius); background: var(--surface-alt); padding: 22px 26px; font-family: var(--font-display); font-size: 1.24rem; color: var(--brand-dark); line-height: 1.4; }
.pull-figure { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-xs); padding: 24px; }

/* --------------------------- Author / team ----------------------------- */
.author-box { display: flex; gap: 18px; align-items: center; background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-xs); padding: 22px; }
.avatar { width: 62px; height: 62px; border-radius: 50%; background: var(--brand-tint); color: var(--brand); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.avatar .icon { width: 30px; height: 30px; }
.author-box h4 { font-family: var(--font-text); font-weight: 800; font-size: 1rem; }
.author-box p { font-size: 0.9rem; color: var(--muted); margin-top: 3px; }

/* ------------------------------ Footer --------------------------------- */
.site-footer { background: var(--brand-dark); color: #C9D8CF; padding: 60px 0 28px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: #7FA593; }
.footer-about { font-size: 0.92rem; color: #A9C1B4; margin-top: 16px; max-width: 34ch; }
.footer-col h5 { color: #fff; font-family: var(--font-text); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.footer-col a { display: block; color: #A9C1B4; font-size: 0.94rem; padding: 5px 0; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; font-size: 0.84rem; color: #8FA99B; }
.footer-bottom a { color: #8FA99B; }
.footer-bottom a:hover { color: #fff; }
.footer-disclaimer { font-size: 0.78rem; color: #6E897B; line-height: 1.6; margin-top: 18px; max-width: 100%; }

/* ------------------------------ Utility -------------------------------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.text-muted { color: var(--muted); }
.flex { display: flex; } .items-center { align-items: center; } .gap-2 { gap: 10px; } .gap-3 { gap: 16px; } .wrap { flex-wrap: wrap; }
.hide-mobile { }
@media (max-width: 620px) { .hide-mobile { display: none; } }
.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; padding: 10px 16px; border-radius: 8px; z-index: 100; }
.skip-link:focus { left: 12px; top: 12px; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }
