/* ============================================================================
   BeverlyFinds × Oopbuy — Oopbuy Spreadsheet landing page
   Dark theme + warm gold accent. Mobile-first, zero-layout-shift.
   ========================================================================== */

:root {
  --bg: #0B0B0C;
  --surface: #141416;
  --surface-2: #18181b;
  --text: #F5F5F5;
  --muted: #9A9A9A;
  --gold: #E8B73A;
  --gold-soft: #f0cd6e;
  --border: #262626;
  --radius: 16px;
  --radius-pill: 999px;
  --maxw: 1120px;
  --gold-glow: 0 0 0 1px rgba(232, 183, 58, 0.35), 0 10px 40px -10px rgba(232, 183, 58, 0.55);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-soft); }

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.02em; }

p { margin: 0 0 1em; }

strong { color: #fff; font-weight: 700; }

.gold { color: var(--gold); }

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

/* ---- Accessibility: skip link + focus ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #1a1300;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  min-height: 48px;           /* WCAG 2.5.8 target size */
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1a1300;
  box-shadow: var(--gold-glow);
}
.btn-gold:hover { color: #1a1300; box-shadow: 0 0 0 1px rgba(232,183,58,.5), 0 14px 48px -10px rgba(232,183,58,.7); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { color: var(--text); border-color: var(--gold); background: rgba(232,183,58,0.07); }

.btn-dark {
  background: #0B0B0C;
  color: var(--text);
  border-color: rgba(0,0,0,0.3);
}
.btn-dark:hover { color: var(--gold-soft); }

.btn-lg { font-size: 17px; min-height: 56px; padding: 16px 28px; }
.btn-sm { min-height: 40px; padding: 9px 16px; font-size: 14px; }
.btn-block { width: 100%; }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 12px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 800; }
.logo:hover { color: var(--text); }
.logo-emoji { font-size: 22px; }
.logo-text { font-size: 16px; letter-spacing: -0.01em; }
.logo-x { color: var(--gold); }
.header-nav { display: flex; align-items: center; gap: 14px; }
.nav-link { color: var(--muted); font-weight: 600; font-size: 15px; }
.nav-link:hover { color: var(--text); }

@media (max-width: 560px) {
  .nav-link { display: none; }
  .logo-text { font-size: 14px; }
}

/* ============================ HERO ============================ */
.hero { position: relative; overflow: hidden; padding: 72px 0 56px; }
.hero-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 480px;
  max-width: 120%;
  background: radial-gradient(closest-side, rgba(232,183,58,0.18), rgba(232,183,58,0) 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }

.badge {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

#hero-title {
  font-size: clamp(2.1rem, 6.2vw, 4rem);
  font-weight: 900;
  max-width: 16ch;
  margin-inline: auto;
}

.hero-sub {
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.22rem);
  max-width: 60ch;
  margin: 18px auto 30px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.trust-line {
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

/* ============================ TRUST BAR ============================ */
.trust-bar { padding: 8px 0 8px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.stat-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num { font-size: 1.5rem; font-weight: 900; color: var(--gold); letter-spacing: -0.02em; }
.stat-label { font-size: 13px; color: var(--muted); font-weight: 600; }

@media (min-width: 720px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================ SECTIONS ============================ */
.section { padding: 56px 0; }
.section-alt { background: var(--surface); border-block: 1px solid var(--border); }
.section h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; }
.section-intro { color: var(--muted); max-width: 60ch; margin-bottom: 32px; }
.section p { color: #d9d9d9; }
.section .narrow p { font-size: 1.05rem; }

/* ============================ PRODUCT GRID ============================ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 560px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.15s ease, border-color 0.2s ease;
}
.product-card:hover { transform: translateY(-3px); border-color: rgba(232,183,58,0.4); }

.product-thumb {
  aspect-ratio: 16 / 10;       /* fixed ratio => zero layout shift */
  width: 100%;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  border: 1px solid var(--border);
  background: radial-gradient(120% 120% at 30% 20%, #232327, #161618);
}
.thumb-sneaker   { background: radial-gradient(120% 120% at 30% 20%, #2a2412, #161618); }
.thumb-bag       { background: radial-gradient(120% 120% at 30% 20%, #2a1822, #161618); }
.thumb-tracksuit { background: radial-gradient(120% 120% at 30% 20%, #15242a, #161618); }
.thumb-tech      { background: radial-gradient(120% 120% at 30% 20%, #1a1a2e, #161618); }
.thumb-jewelry   { background: radial-gradient(120% 120% at 30% 20%, #102a25, #161618); }
.thumb-outerwear { background: radial-gradient(120% 120% at 30% 20%, #2a2017, #161618); }

.product-name { font-size: 1.12rem; font-weight: 700; margin: 0; }
.product-cat { color: var(--muted); font-size: 14px; margin: 0 0 4px; }
.product-card .btn { margin-top: auto; }

/* ============================ STEPS ============================ */
.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 820px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-num {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1a1300;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.step-title { font-size: 1.15rem; font-weight: 700; }
.step-card p { color: #cfcfcf; }
.step-card .btn { margin-top: auto; }

/* ============================ GOLD CTA BLOCK ============================ */
.cta-block {
  position: relative;
  overflow: hidden;
  margin: 56px auto;
  max-width: calc(var(--maxw) - 0px);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), #d39f24);
  border-radius: 24px;
  padding: 48px 24px;
  color: #1a1300;
  box-shadow: 0 20px 60px -20px rgba(232,183,58,0.55);
}
.cta-inner h2 { color: #1a1300; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.cta-sub { color: #2a2000; font-weight: 500; max-width: 44ch; margin: 0 auto 24px; font-size: 1.1rem; }
.cta-sub strong { color: #000; }

/* ============================ EMAIL GATE ============================ */
.gate-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 0 60px -30px rgba(232,183,58,0.4);
}
.gate-form { margin: 0; }
.hp-field { position: absolute; left: -9999px; top: auto; height: 0; overflow: hidden; }
.field-label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 15px; }
.gate-input-row { display: flex; flex-direction: column; gap: 12px; }
.gate-input-row input[type="email"] {
  flex: 1;
  min-height: 52px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text);
  font-size: 16px;
  font-family: var(--font);
  padding: 0 20px;
}
.gate-input-row input[type="email"]::placeholder { color: #6f6f6f; }
.gate-input-row input[type="email"]:focus-visible { outline: 3px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.field-hint { color: var(--muted); font-size: 13px; margin: 12px 0 0; }

@media (min-width: 560px) {
  .gate-input-row { flex-direction: row; align-items: center; }
  .gate-input-row .btn { white-space: nowrap; }
}

.gate-success { text-align: center; }
.success-check { font-size: 2.4rem; display: block; margin-bottom: 6px; }
.success-title { font-size: 1.4rem; font-weight: 800; }
.gate-success p { color: #d9d9d9; max-width: 48ch; margin-inline: auto; }
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

/* ============================ FAQ ============================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px 18px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 30px 16px 0;
  position: relative;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 6px; }
.faq-item p { color: #cfcfcf; margin: 0 0 16px; padding-right: 8px; }

/* ============================ FOOTER ============================ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 40px 0 48px;
  margin-top: 24px;
}
.footer-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; }
.footer-social { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-social a { color: var(--text); font-weight: 600; min-height: 24px; display: inline-flex; align-items: center; }
.footer-social a:hover { color: var(--gold); }
.footer-copy { color: var(--muted); font-size: 14px; margin: 0; }
.footer-disclaimer { color: #6f6f6f; font-size: 12.5px; max-width: 60ch; margin: 0; line-height: 1.6; }

/* ============================ MOTION PREFERENCE ============================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* ============================================================================
   LINK-IN-BIO HUB (homepage / index.html)
   Centered, mobile-first, max-width ~520px. Reuses the same tokens above.
   ========================================================================== */
.hub-body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.hub-main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 32px;
}

.hub {
  position: relative;
  width: 100%;
  max-width: 520px;
  text-align: center;
  z-index: 1;
}

/* Soft gold glow behind the hub, matching the money-page hero */
.hub-glow {
  position: fixed;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  height: 460px;
  max-width: 120%;
  background: radial-gradient(closest-side, rgba(232, 183, 58, 0.16), rgba(232, 183, 58, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* ---- Brand head ---- */
.hub-logo {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  margin: 0 auto 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  object-fit: cover;
  box-shadow: 0 18px 50px -18px rgba(232, 183, 58, 0.45);
}

.hub-name {
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  font-weight: 900;
  margin: 0 0 6px;
}

.hub-tagline {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
  margin: 0 0 18px;
}

/* ---- Highlighted coupon line ---- */
.hub-highlight {
  display: inline-block;
  background: var(--surface);
  border: 1px solid rgba(232, 183, 58, 0.35);
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  padding: 10px 16px;
  border-radius: var(--radius);
  margin: 0 0 28px;
}
.hub-highlight strong { color: var(--gold); font-weight: 800; }

/* ---- "Start here" eyebrow ---- */
.hub-eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 14px;
}

/* ---- Link stack ---- */
.hub-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 26px;
}

/* Big tappable link buttons (>=58px). Built on .btn so focus/active are shared. */
.hub-btn {
  width: 100%;
  min-height: 60px;
  flex-direction: column;
  gap: 3px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 1.02rem;
}
.hub-btn .hub-btn-sub {
  font-weight: 600;
  font-size: 13px;
  opacity: 0.85;
}
.btn-gold .hub-btn-sub { color: #3a2c00; opacity: 0.9; }

/* Secondary (non-primary) hub buttons sit on a surface so they read as cards */
.hub-btn.btn-surface {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
}
.hub-btn.btn-surface:hover {
  color: var(--text);
  border-color: rgba(232, 183, 58, 0.45);
  background: #1d1d20;
  transform: translateY(-2px);
}

/* ---- Secondary blog link ---- */
.hub-secondary {
  margin: 18px 0 6px;
  text-align: center;
}
.hub-secondary a {
  display: inline-block;
  min-height: 24px;
  padding: 4px 8px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, opacity 0.15s ease;
}
.hub-secondary a:hover {
  border-bottom-color: var(--gold);
}
.hub-secondary a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Social proof ---- */
.hub-proof {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 4px;
}

/* ---- Hub footer ---- */
.hub-footer {
  flex-shrink: 0;
  text-align: center;
  padding: 22px 20px 32px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.hub-footer .footer-copy { margin: 0 0 6px; }
.hub-footer .footer-disclaimer { margin: 0 auto; }

/* ============================================================================
   BLOG — listing (index) + long-form articles
   Reuses tokens above. Dark + gold, mobile-first, readable measure.
   ========================================================================== */

/* ---- Breadcrumb ---- */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  padding: 22px 0 0;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li + li::before { content: "›"; color: var(--border); }
.breadcrumb a { color: var(--muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current="page"] { color: var(--text); }

/* ---- Blog index header ---- */
.blog-head { padding: 30px 0 8px; text-align: center; }
.blog-head h1 { font-size: clamp(2rem, 5.5vw, 3.1rem); font-weight: 900; }
.blog-head p { color: var(--muted); max-width: 58ch; margin: 8px auto 0; font-size: 1.08rem; }

/* ---- Post list (cards) ---- */
.post-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 36px 0 8px;
}
@media (min-width: 720px) { .post-list { grid-template-columns: repeat(2, 1fr); } }

.post-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.15s ease, border-color 0.2s ease;
}
.post-card:hover { transform: translateY(-3px); border-color: rgba(232,183,58,0.4); }
.post-card .post-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}
.post-card h2 { font-size: 1.28rem; font-weight: 800; margin: 0; letter-spacing: -0.02em; }
.post-card h2 a { color: var(--text); }
.post-card h2 a:hover { color: var(--gold-soft); }
.post-card p { color: var(--muted); margin: 0; font-size: 0.98rem; }
.post-card .post-more { color: var(--gold); font-weight: 700; font-size: 14px; margin-top: 2px; }

/* ---- Article body ---- */
.article { padding: 8px 0 24px; }
.article-header { max-width: 760px; margin: 0 auto; padding: 14px 0 8px; }
.article-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 10px;
}
.article h1 {
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  font-weight: 900;
  margin: 0 0 14px;
}
.article-meta { color: var(--muted); font-size: 14px; font-weight: 500; margin: 0; }
.article-meta time { color: var(--text); }

.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 {
  font-size: clamp(1.4rem, 3.6vw, 1.95rem);
  font-weight: 800;
  margin: 1.8em 0 0.5em;
  color: var(--text);
}
.article-body h3 { font-size: 1.18rem; font-weight: 700; margin: 1.4em 0 0.4em; color: var(--text); }
.article-body p { color: #d9d9d9; font-size: 1.06rem; line-height: 1.7; }
.article-body ul, .article-body ol { color: #d9d9d9; font-size: 1.06rem; line-height: 1.7; padding-left: 1.3em; margin: 0 0 1.2em; }
.article-body li { margin-bottom: 0.5em; }
.article-body li::marker { color: var(--gold); }
.article-body a { color: var(--gold); font-weight: 600; }
.article-body a:hover { color: var(--gold-soft); text-decoration: underline; }
.article-body strong { color: #fff; }

/* Callout / key-takeaway box */
.callout {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 1.6em 0;
}
.callout p { margin: 0; color: #e7e7e7; }
.callout p + p { margin-top: 0.6em; }

/* Inline gold CTA inside an article */
.article-cta {
  background: linear-gradient(135deg, var(--gold), #d39f24);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  margin: 2em 0;
  box-shadow: 0 18px 50px -22px rgba(232,183,58,0.55);
}
.article-cta h2 { color: #1a1300; margin: 0 0 8px; font-size: 1.4rem; }
.article-cta p { color: #2a2000; margin: 0 0 18px; font-weight: 500; }
.article-cta p strong { color: #000; }

/* "Keep reading" related posts */
.related {
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 0 0;
}
.related h2 { font-size: 1.3rem; font-weight: 800; margin: 0 0 14px; }
.related-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 620px) { .related-list { grid-template-columns: repeat(2, 1fr); } }
.related-list a {
  display: block;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 700;
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.related-list a:hover { border-color: rgba(232,183,58,0.45); color: var(--gold-soft); transform: translateY(-2px); }
.related-list span { display: block; color: var(--muted); font-size: 13px; font-weight: 500; margin-top: 4px; }

/* Article FAQ reuses .faq-list / .faq-item from above; just constrain width */
.article-faq { max-width: 760px; margin: 0 auto; }
.article-faq h2 { font-size: clamp(1.4rem, 3.6vw, 1.95rem); font-weight: 800; margin: 0 0 18px; }
