/* US Market Updates — site chrome
   Editorial navy + gold. Distinct from the GMU green clone. */

:root {
  --bg: #080c14;
  --bg-mid: #0e1522;
  --bg-elev: #141c2c;
  --bg-card: rgba(255, 247, 230, 0.035);
  --gold: #c9a24a;
  --gold-bright: #e4c36a;
  --gold-dim: rgba(201, 162, 74, 0.16);
  --gold-line: rgba(201, 162, 74, 0.28);
  --ink: #f3efe6;
  --ink-2: #c4bbae;
  --ink-3: #7d766b;
  --line: rgba(243, 239, 230, 0.1);
  --line-strong: rgba(243, 239, 230, 0.16);
  --up: #3dcf7a;
  --down: #e85d5d;
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-ui: "IBM Plex Sans", system-ui, sans-serif;
  --radius: 8px;
  --radius-sm: 4px;
  --shadow-card: 0 8px 28px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 14px 40px rgba(0, 0, 0, 0.5);
  --t: 180ms ease;
  --primary: var(--bg);
  --primary-mid: var(--bg-mid);
  --primary-light: var(--bg-elev);
  --surface: var(--bg-card);
  --surface-raised: rgba(255, 247, 230, 0.06);
  --accent: var(--gold);
  --accent-light: var(--gold-bright);
  --accent-dim: var(--gold-dim);
  --accent-border: var(--gold-line);
  --accent-border-hover: rgba(201, 162, 74, 0.5);
  --border: var(--line);
  --border-strong: var(--line-strong);
  --text-primary: var(--ink);
  --text-secondary: var(--ink-2);
  --text-muted: var(--ink-3);
  --font-body: var(--font-ui);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: var(--gold-bright); text-decoration: none; transition: color var(--t); }
a:hover { color: #fff4cc; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--gold); color: #14110a; padding: 8px 16px; z-index: 1000;
  font-size: 0.875rem; font-weight: 600;
}
.skip-link:focus { top: 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* ── MASTHEAD ── */
.masthead {
  background: linear-gradient(180deg, #0b101a 0%, #080c14 100%);
  border-bottom: 1px solid var(--gold-line);
  padding: 1.35rem 0 1.15rem;
  text-align: center;
}
.masthead-kicker {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.45rem;
}
.masthead-wordmark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.2vw, 2.7rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  color: var(--ink);
}
.masthead-wordmark:hover { color: var(--gold-bright); }
.masthead-tag {
  margin-top: 0.45rem; font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-3);
}

/* ── STICKY NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-main { height: 56px; }
.header-main .container, .site-header > .container { height: 100%; }
.header-inner { display: flex; align-items: center; gap: 1.25rem; height: 56px; }
.site-logo { display: flex; align-items: center; gap: 0.7rem; }
.logo-icon {
  width: 32px; height: 32px; border-radius: 6px; flex-shrink: 0;
  background: linear-gradient(145deg, #d4ae52, #8a6d22);
  display: flex; align-items: center; justify-content: center;
  font-size: 8.5px; font-weight: 700; color: #14110a; letter-spacing: -0.4px;
}
.logo-text-wrap { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
  color: var(--ink); line-height: 1.15; white-space: nowrap;
}
.logo-tagline {
  font-size: 0.56rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-3); line-height: 1; white-space: nowrap;
}
.site-nav { margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-links li a {
  font-size: 0.76rem; font-weight: 500; color: var(--ink-2);
  padding: 0.4rem 0.7rem; border-radius: var(--radius-sm); display: block; white-space: nowrap;
}
.nav-links li a:hover { color: var(--ink); background: rgba(255, 247, 230, 0.05); }
.nav-links li a.active { color: var(--gold-bright); background: var(--gold-dim); }
.menu-toggle {
  display: none; background: none; border: 1px solid var(--line);
  color: var(--ink); padding: 0.4rem 0.5rem; border-radius: 6px; cursor: pointer;
}

/* ── DATA BAR ── */
.data-bar {
  height: 34px; background: #0b1220;
  border-bottom: 1px solid var(--gold-line); overflow: hidden;
}
.data-bar .container { height: 100%; display: flex; align-items: center; }
.data-bar-label {
  font-size: 0.58rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--ink-3);
  padding-right: 1rem; margin-right: 1rem;
  border-right: 1px solid var(--line); white-space: nowrap; flex-shrink: 0;
}
.data-tickers { display: flex; align-items: center; flex: 1; overflow: hidden; }
.ticker-item {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0 1rem; border-right: 1px solid var(--line);
  height: 34px; white-space: nowrap;
}
.ticker-item:first-child { padding-left: 0; }
.ticker-name { font-size: 0.66rem; color: var(--ink-3); font-weight: 500; }
.ticker-val {
  font-size: 0.74rem; font-weight: 600; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.ticker-chg { font-size: 0.64rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.ticker-chg.up { color: var(--up); }
.ticker-chg.down { color: var(--down); }
.data-bar-timestamp { margin-left: auto; font-size: 0.58rem; color: var(--ink-3); padding-left: 1rem; flex-shrink: 0; }

/* ── SECTION LABELS ── */
.section-label,
.cards-section-label,
.cat-hero-label {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gold);
  display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.1rem;
}
.section-label::before,
.cat-hero-label::before {
  content: ""; width: 18px; height: 1px; background: var(--gold);
}
.cards-section-label::after {
  content: ""; flex: 1; height: 1px; background: var(--gold-line);
}
.section-divider { border: none; border-top: 1px solid var(--gold-line); margin: 2.5rem 0; }

/* ── OVERLAY HERO ── */
.hero-section { padding: 2rem 0 0; }
.lead-grid {
  display: grid; grid-template-columns: 1.55fr 0.9fr; gap: 1rem;
}
.hero-overlay {
  position: relative; border-radius: 10px; overflow: hidden;
  min-height: 420px; background: var(--bg-elev);
  border: 1px solid var(--gold-line);
}
.hero-overlay-media { display: block; height: 100%; min-height: 420px; }
.hero-overlay-media img {
  width: 100%; height: 100%; min-height: 420px; object-fit: cover;
  transition: transform 600ms ease;
}
.hero-overlay:hover .hero-overlay-media img { transform: scale(1.03); }
.hero-overlay::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,12,20,0.05) 20%, rgba(8,12,20,0.88) 100%);
}
.hero-overlay-copy {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 1.6rem 1.7rem 1.5rem;
}
.hero-overlay-copy .feat-cat { color: var(--gold-bright); }
.hero-overlay-copy .feat-headline,
.hero-overlay-copy .feat-headline a { color: #fff; }
.hero-overlay-copy .feat-excerpt { color: rgba(243, 239, 230, 0.82); -webkit-line-clamp: 3; }
.hero-overlay-copy .feat-meta { color: rgba(243, 239, 230, 0.55); }
.feat-data-badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  background: rgba(8, 12, 20, 0.72); backdrop-filter: blur(10px);
  border: 1px solid var(--gold-line); border-radius: 8px;
  padding: 0.55rem 0.85rem; text-align: right;
}
.badge-value {
  display: block; font-size: 1.35rem; font-weight: 700; color: var(--gold-bright);
  line-height: 1; font-variant-numeric: tabular-nums;
}
.badge-label { font-size: 0.58rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; }

/* legacy hero grid still used on some pages */
.hero-grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 1px;
  background: var(--gold-line); border: 1px solid var(--gold-line);
  border-radius: var(--radius); overflow: hidden;
}
.hero-featured { position: relative; background: var(--bg-mid); }
.feat-img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.feat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.hero-featured:hover .feat-img-wrap img { transform: scale(1.03); }
.feat-img-wrap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, transparent 35%, #080c14f0 100%);
}
.feat-body { padding: 1.35rem 1.5rem 1.4rem; }
.feat-cat {
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gold); margin-bottom: 0.55rem; display: block;
}
.feat-cat a { color: inherit; }
.feat-headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 0.65rem;
}
.feat-headline a { color: inherit; }
.feat-headline a:hover { color: var(--gold-bright); }
.feat-excerpt {
  font-size: 0.92rem; color: var(--ink-2); line-height: 1.6; margin-bottom: 0.85rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.feat-meta { font-size: 0.7rem; color: var(--ink-3); display: flex; align-items: center; gap: 0.4rem; }
.feat-meta .sep { opacity: 0.45; }

.hero-ticker-sidebar { background: var(--bg-mid); display: flex; flex-direction: column; }
.ticker-sidebar-label {
  font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-3); padding: 0.85rem 1.1rem 0.7rem;
  border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 0.5rem;
}
.ticker-sidebar-label::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.28; } }
.ticker-story {
  padding: 0.95rem 1.1rem; border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.28rem;
}
.ticker-story:hover { background: rgba(255, 247, 230, 0.03); }
.ts-cat { font-size: 0.56rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }
.ts-headline { font-size: 0.9rem; font-weight: 550; line-height: 1.35; color: var(--ink); }
.ts-headline a { color: inherit; }
.ts-headline a:hover { color: var(--gold-bright); }
.ts-date { font-size: 0.65rem; color: var(--ink-3); }

.side-stack { display: flex; flex-direction: column; gap: 1rem; }
.side-story {
  display: grid; grid-template-columns: 112px 1fr; gap: 0.85rem;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden; min-height: 108px;
}
.side-story img { width: 112px; height: 100%; object-fit: cover; }
.side-story-body { padding: 0.75rem 0.85rem 0.8rem 0; display: flex; flex-direction: column; gap: 0.25rem; }
.side-story-body .ts-headline { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }

/* ── COVERAGE TILES ── */
.coverage-section { padding: 2.25rem 0 0; }
.coverage-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem;
}
.coverage-tile {
  position: relative; border-radius: 8px; overflow: hidden;
  aspect-ratio: 4/3; border: 1px solid var(--gold-line); display: block;
}
.coverage-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.coverage-tile:hover img { transform: scale(1.04); }
.coverage-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8,12,20,0.88) 100%);
}
.coverage-tile span {
  position: absolute; left: 0.85rem; right: 0.7rem; bottom: 0.75rem; z-index: 1;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: #fff;
}
.photo-credit {
  font-size: 0.62rem; color: var(--ink-3); margin-top: 0.55rem; line-height: 1.45;
}
.photo-credit a { color: var(--ink-2); }

/* ── CARDS ── */
.cards-section { padding: 2rem 0 0; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.article-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 10px; overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.article-card:hover {
  border-color: var(--gold-line); transform: translateY(-3px); box-shadow: var(--shadow-hover);
}
.card-img-wrap { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-elev); }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.article-card:hover .card-img-wrap img { transform: scale(1.04); }
.card-body { padding: 1.05rem 1.05rem 1.15rem; flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.card-cat { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }
.card-cat a { color: inherit; }
.card-title {
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 700;
  line-height: 1.25; color: var(--ink);
}
.card-title a { color: inherit; }
.card-title a:hover { color: var(--gold-bright); }
.card-excerpt {
  font-size: 0.84rem; color: var(--ink-2); line-height: 1.55; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-meta { font-size: 0.68rem; color: var(--ink-3); margin-top: auto; display: flex; gap: 0.35rem; align-items: center; }
.card-meta .sep { opacity: 0.4; }

/* ── CATEGORY HERO ── */
.cat-hero {
  padding: 0; position: relative; min-height: 260px;
  display: flex; align-items: flex-end;
  border-bottom: 1px solid var(--gold-line);
}
.cat-hero-media { position: absolute; inset: 0; }
.cat-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.cat-hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,12,20,0.25) 0%, rgba(8,12,20,0.88) 100%);
}
.cat-hero .container { position: relative; z-index: 1; padding-top: 4.5rem; padding-bottom: 1.75rem; }
.cat-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.03em; color: #fff; margin-bottom: 0.55rem;
}
.cat-hero p { font-size: 0.95rem; color: rgba(243, 239, 230, 0.78); line-height: 1.65; max-width: 620px; }
.cat-hero .photo-credit { color: rgba(243, 239, 230, 0.45); }

/* ── ABOUT ── */
.about-section { padding: 2.75rem 0 3.25rem; }
.about-card {
  background: linear-gradient(160deg, rgba(201,162,74,0.08), var(--bg-mid));
  border: 1px solid var(--gold-line); border-radius: 12px;
  padding: 2.4rem 2rem; text-align: center; max-width: 760px; margin: 0 auto;
}
.about-card h2 { font-family: var(--font-display); font-size: 1.55rem; color: var(--ink); margin-bottom: 0.75rem; }
.about-card p { font-size: 0.92rem; color: var(--ink-2); line-height: 1.75; margin-bottom: 1.2rem; }
.about-pills { display: flex; justify-content: center; gap: 0.55rem; flex-wrap: wrap; }
.about-pills a {
  color: var(--gold-bright); font-size: 0.75rem; font-weight: 500;
  border: 1px solid var(--gold-line); padding: 0.38rem 0.9rem; border-radius: 100px;
}
.about-pills a:hover { background: var(--gold-dim); color: #fff; }

/* ── FOOTER ── */
.site-footer {
  background: #060910; border-top: 1px solid var(--gold-line);
  padding: 2.75rem 0 1.4rem; margin-top: 3.25rem;
}
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand .footer-logo {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--ink); display: block; margin-bottom: 0.5rem;
}
.footer-brand .footer-desc { font-size: 0.84rem; color: var(--ink-3); line-height: 1.6; }
.footer-nav-heading {
  display: block; font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 0.75rem;
}
.footer-nav ul li { margin-bottom: 0.4rem; }
.footer-nav ul li a { font-size: 0.84rem; color: var(--ink-2); }
.footer-nav ul li a:hover { color: var(--ink); }
.footer-ai-link { color: var(--gold-bright) !important; }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 1.15rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.74rem; color: var(--ink-3); }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.footer-links a { font-size: 0.82rem; color: var(--ink-2); }

/* ── ARTICLE ── */
.article-head { max-width: 780px; margin: 2.5rem auto 0; padding: 0 1.5rem; }
.article-cat-link, .article .meta a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--gold); margin-bottom: 0.9rem;
}
.article-h1, .article h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.025em;
  margin-bottom: 0.85rem; color: var(--ink);
}
.article-meta-line, .article .meta {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--ink-3); flex-wrap: wrap; margin-bottom: 1.5rem;
}
.article-meta-line .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-3); }
.article-hero { max-width: 920px; margin: 0 auto 2.25rem; padding: 0 1.5rem; }
.article-hero-inner, .article .hero { border-radius: 10px; overflow: hidden; aspect-ratio: 16/9; }
.article-hero-inner img, .article .hero img { width: 100%; height: 100%; object-fit: cover; }
.article-body, main.article {
  max-width: 700px; margin: 0 auto; padding: 0 1.5rem 2.5rem;
}
.article-body p, main.article p {
  font-size: 1.08rem; line-height: 1.8; margin-bottom: 1.35rem; color: var(--ink);
}
.article-body > p:first-of-type::first-letter,
main.article > p:first-of-type::first-letter {
  font-family: var(--font-display); font-size: 3.15rem; float: left;
  line-height: 0.82; padding: 0.12rem 0.45rem 0 0; color: var(--gold-bright);
  font-weight: 700;
}
.article-body h2, main.article h2 {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 700;
  margin: 2.2rem 0 0.85rem; line-height: 1.25; letter-spacing: -0.02em;
  text-transform: none; color: var(--ink);
}
.article-body h3 { font-family: var(--font-display); font-size: 1.15rem; margin: 1.6rem 0 0.6rem; }
.article-body a, main.article a { border-bottom: 1px solid var(--gold-line); }
.article-body ul, .article-body ol { margin: 0 0 1.4rem 1.4rem; }
.article-body li { font-size: 1.05rem; line-height: 1.7; margin-bottom: 0.45rem; list-style: disc; }
.article-body blockquote, main.article blockquote {
  border-left: 3px solid var(--gold); padding: 0.85rem 0 0.85rem 1.25rem;
  margin: 1.75rem 0; background: var(--gold-dim); border-radius: 0 8px 8px 0;
}
.data-callout {
  background: var(--gold-dim); border: 1px solid var(--gold-line); border-radius: 10px;
  padding: 1rem 1.2rem; margin: 1.6rem 0; display: flex; flex-direction: column; gap: 0.2rem;
}
.dc-value { font-size: 1.85rem; font-weight: 700; color: var(--gold-bright); line-height: 1; font-variant-numeric: tabular-nums; }
.dc-label { font-size: 0.78rem; color: var(--ink-2); }

.related-coverage-wrap, .related-coverage { max-width: 700px; margin: 0 auto 2rem; padding: 0 1.5rem; }
.related-coverage-card, .related-coverage {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 10px; padding: 1.25rem 1.35rem;
}
.related-coverage-card h3, .related-coverage h3 {
  font-size: 0.66rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--gold); margin-bottom: 0.75rem;
}
.related-coverage-card ul li, .related-coverage ul li { font-size: 0.9rem; color: var(--ink-2); margin-bottom: 0.4rem; }

.related-articles-section {
  background: #060910; border-top: 1px solid var(--gold-line);
  padding: 2.5rem 0; margin-top: 1.5rem;
}
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 10px; overflow: hidden; display: flex; flex-direction: column;
}
.related-card-img, .related-card img { aspect-ratio: 16/9; width: 100%; object-fit: cover; }
.related-card-body, .related-card .b { padding: 0.95rem 1rem 1.1rem; }
.related-card-cat { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }
.related-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; line-height: 1.3; }
.related-card-meta { font-size: 0.7rem; color: var(--ink-3); }

/* ── LLM INFO / 404 ── */
.llm-page, .error-section { padding: 3rem 0 4rem; }
.llm-page h1, .error-code {
  font-family: var(--font-display); font-weight: 700; color: var(--gold-bright);
}
.error-section { text-align: center; }
.error-code { font-size: clamp(3rem, 8vw, 6rem); line-height: 1; margin-bottom: 0.7rem; }
.error-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.85rem; }
.error-desc { font-size: 1rem; color: var(--ink-2); max-width: 520px; margin: 0 auto 1.75rem; }
.error-explore { margin-top: 3.5rem; }
.error-explore h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 1.25rem; }
.explore-card {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 10px;
  padding: 1.1rem 1.15rem; display: block; color: inherit;
}
.explore-card h4 { font-family: var(--font-display); color: var(--ink); margin-bottom: 0.35rem; }
.explore-card p { font-size: 0.82rem; color: var(--ink-2); line-height: 1.5; }
.explore-card:hover { border-color: var(--gold-line); color: inherit; }
.btn-cta {
  display: inline-block; background: var(--gold); color: #14110a;
  font-weight: 600; font-size: 0.9rem; padding: 0.75rem 1.6rem; border-radius: 8px;
}
.btn-cta:hover { background: var(--gold-bright); color: #14110a; }
.explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 960px; margin: 0 auto; text-align: left; }
.llm-page pre {
  background: var(--bg-elev); border: 1px solid var(--gold-line); border-radius: 8px;
  padding: 1.2rem; overflow-x: auto; font-size: 0.82rem; line-height: 1.6; color: var(--gold-bright);
  margin: 1rem 0 2rem;
}
.llm-page h2 {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold); margin: 2.1rem 0 0.75rem; padding-bottom: 0.45rem; border-bottom: 1px solid var(--line);
}
.llm-page section p, .llm-page section li { font-size: 0.95rem; margin-bottom: 0.75rem; line-height: 1.7; }
.llm-page ul { padding-left: 1.2rem; }
.llm-page li { list-style: disc; }
.llm-page table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.4rem; font-size: 0.88rem; }
.llm-page th, .llm-page td { text-align: left; padding: 0.5rem 0.7rem; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.lede { color: var(--ink-2); font-size: 1.05rem; margin-bottom: 1.5rem; max-width: 640px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media (prefers-reduced-motion: no-preference) {
  .fade-in { animation: fadeIn 0.45s ease both; }
  .fade-up { opacity: 0; transform: translateY(10px); animation: fadeUp 0.4s ease forwards; }
  .fade-up:nth-child(1) { animation-delay: 0ms; }
  .fade-up:nth-child(2) { animation-delay: 50ms; }
  .fade-up:nth-child(3) { animation-delay: 100ms; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
}

@media (max-width: 1024px) {
  .data-tickers .ticker-item:nth-child(n+4) { display: none; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .lead-grid, .hero-grid { grid-template-columns: 1fr; }
  .cards-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .data-tickers .ticker-item:nth-child(n+3) { display: none; }
  .hero-overlay, .hero-overlay-media, .hero-overlay-media img { min-height: 340px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 90px; left: 0; right: 0; background: rgba(8, 12, 20, 0.98);
    padding: 0.75rem 1.5rem 1.1rem; border-bottom: 1px solid var(--gold-line); z-index: 120;
  }
  .nav-links.open li a { padding: 0.75rem 0; border-bottom: 1px solid var(--line); border-radius: 0; }
  .menu-toggle { display: block; margin-left: auto; }
  .logo-tagline, .data-bar-label { display: none; }
  .data-tickers .ticker-item:nth-child(n+2) { display: none; }
  .cards-grid, .related-grid, .coverage-grid, .explore-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .side-story { grid-template-columns: 96px 1fr; }
  .article-body, main.article { padding: 0 1.1rem 2rem; }
  .masthead { padding: 1rem 0 0.9rem; }
}
