/* ============================================================
   WIKI WORLD NEWS - editorial design system
   Hand-written CSS, no build step.
   ============================================================ */

:root {
  --ink:        #14110f;   /* primary text */
  --ink-soft:   #4a4540;   /* secondary text */
  --ink-mute:   #7a736b;   /* tertiary / meta */
  --paper:      #f6f1e7;   /* warm ivory background */
  --paper-deep: #ede6d5;   /* secondary surface */
  --surface:    #fffdf7;   /* card background */
  --rule:       #d8d1bf;   /* hairline */
  --rule-soft:  #e6e0d0;
  --crimson:    #8a0f1f;   /* editorial accent */
  --crimson-deep:#660b16;
  --gold:       #b88a3a;
  --green:      #2f6b3d;
  --red:        #a01024;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Source Serif 4', 'Source Serif Pro', 'Merriweather', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

::selection { background: rgba(138, 15, 31, 0.18); }

/* ============================================================
   TOP UTILITY STRIP (date + utility links)
   ============================================================ */
.top-strip {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--rule);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.top-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.top-strip-date { font-weight: 600; }

.top-strip-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-strip-links a {
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.15s;
}

.top-strip-links a:hover { color: var(--crimson); }

.top-strip-links a.subscribe {
  color: var(--crimson);
  font-weight: 700;
}

/* ============================================================
   MASTHEAD
   ============================================================ */
.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.masthead-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 28px 22px;
  text-align: center;
  position: relative;
}

.wordmark-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.wordmark {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(54px, 8.5vw, 104px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--ink);
  text-transform: none;
}

.wordmark .amp {
  font-style: italic;
  font-weight: 400;
  color: var(--crimson);
  font-size: 0.85em;
  margin: 0 0.04em;
}

.tagline {
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.tagline::before, .tagline::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--ink-mute);
  vertical-align: middle;
  margin: 0 14px;
  opacity: 0.6;
}

/* ============================================================
   MARKETS TICKER
   ============================================================ */
.ticker {
  background: var(--ink);
  color: #f0e8d4;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  overflow: hidden;
  font-family: 'JetBrains Mono', 'IBM Plex Mono', Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  padding: 9px 0;
  animation: ticker-scroll 60s linear infinite;
}

.ticker-inner:hover { animation-play-state: paused; }

.tick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.tick-sym { font-weight: 700; color: #fff; letter-spacing: 0.08em; }
.tick-val { color: #cfc6ad; }
.tick-up { color: #6dd193; }
.tick-down { color: #f08c8c; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   BREAKING RIBBON
   ============================================================ */
.breaking-bar {
  background: var(--crimson);
  color: #fff;
  border-bottom: 1px solid var(--crimson-deep);
  display: block;
  text-decoration: none;
}

.breaking-link {
  transition: background 0.15s;
}

.breaking-link:hover {
  background: var(--crimson-deep);
}

.breaking-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
}

.breaking-label {
  background: #14110f;
  color: #fff;
  padding: 3px 10px;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.breaking-pulse {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.7); }
}

.breaking-text {
  flex: 1;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}

.breaking-date {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11.5px;
  white-space: nowrap;
  opacity: 0.92;
}

/* ============================================================
   PRIMARY NAV
   ============================================================ */
.topnav {
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topnav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  overflow-x: auto;
}

.topnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  justify-content: center;
}

.topnav li + li { border-left: 1px solid var(--rule); }

.topnav a {
  display: block;
  padding: 13px 22px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.topnav a:hover {
  background: var(--ink);
  color: var(--paper);
}

.topnav a.active {
  background: var(--ink);
  color: var(--paper);
  position: relative;
}

.topnav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--crimson);
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider {
  max-width: 1280px;
  margin: 48px auto 22px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-divider::before, .section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ink);
  opacity: 0.85;
}

.section-divider .label {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}

.section-divider .label .accent {
  color: var(--crimson);
  font-style: italic;
}

/* ============================================================
   HOMEPAGE LAYOUT
   ============================================================ */
.home {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 28px 24px;
}

/* HERO + BRIEFING ROW */
.hero-row {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}

/* HERO CARD */
.hero-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.hero-thumb {
  background-color: #2a2520;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 10;
  position: relative;
  margin-bottom: 22px;
  overflow: hidden;
}

.hero-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
}

.hero-thumb-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--crimson);
  color: #fff;
  padding: 5px 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-thumb-credit {
  position: absolute;
  bottom: 10px;
  right: 14px;
  color: rgba(255,255,255,0.78);
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-card .card-kicker { margin-bottom: 12px; }

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--ink);
}

.hero-card:hover .hero-headline {
  color: var(--crimson);
}

.hero-deck {
  font-family: 'Source Serif 4', 'Merriweather', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 64ch;
}

/* BRIEFING COLUMN */
.briefing {
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 28px 26px;
  align-self: start;
}

.briefing-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
  margin-bottom: 18px;
}

.briefing-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.01em;
}

.briefing-date {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.briefing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: brief;
}

.briefing-list li {
  counter-increment: brief;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.briefing-list li:last-child { border-bottom: 0; padding-bottom: 0; }

.briefing-list li::before {
  content: counter(brief, decimal-leading-zero);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: italic;
  font-size: 18px;
  color: var(--crimson);
  line-height: 1.1;
}

.briefing-list a {
  text-decoration: none;
  color: var(--ink);
  font-family: 'Source Serif 4', 'Merriweather', serif;
  font-size: 15.5px;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.15s;
}

.briefing-list a:hover { color: var(--crimson); }

.briefing-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
}

.briefing-foot a {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--crimson);
  text-decoration: none;
}

.briefing-foot a::after { content: " \2192"; }

/* ============================================================
   STORY GRID (3-col band)
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 32px;
  padding-top: 32px;
}

.story-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
}

.story-card:hover { opacity: 0.85; }

.story-card .card-thumb {
  background-color: #2a2520;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 10;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}

.story-card .card-kicker { margin-bottom: 8px; }

.story-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.18;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.story-card:hover h3 { color: var(--crimson); }

.story-card .deck {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 8px;
}

/* ============================================================
   ASYMMETRIC FEATURE BAND
   ============================================================ */
.feature-band {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  padding-top: 32px;
}

.feature-band .feature-lead {
  display: block;
  text-decoration: none;
  color: inherit;
}

.feature-band .feature-lead .card-thumb {
  background-color: #2a2520;
  background-size: cover;
  background-position: center;
  aspect-ratio: 5 / 4;
  margin-bottom: 16px;
}

.feature-band .feature-lead h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.12;
  margin: 8px 0 10px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.feature-band .feature-lead:hover h3 { color: var(--crimson); }

.feature-band .feature-lead .deck {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feature-stack a {
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 22px;
}

.feature-stack a:last-child { border-bottom: 0; padding-bottom: 0; }

.feature-stack h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.22;
  margin: 6px 0 6px;
  color: var(--ink);
}

.feature-stack a:hover h4 { color: var(--crimson); }

/* ============================================================
   SHARED CARD ELEMENTS
   ============================================================ */
.card-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--crimson);
}

.card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  margin-top: 8px;
}

.card-meta .dot { margin: 0 8px; opacity: 0.5; }

/* ============================================================
   OPINION BAND (with author photos)
   ============================================================ */
.opinion-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-top: 32px;
}

.opinion-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--ink);
  transition: border-color 0.15s, transform 0.15s;
}

.opinion-card:hover {
  border-top-color: var(--crimson);
  transform: translateY(-2px);
}

.opinion-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.author-meta-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.author-meta-role {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.opinion-card h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--ink);
}

.opinion-card:hover h3 { color: var(--crimson); }

.opinion-card .deck {
  font-family: 'Source Serif 4', serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   MOST READ
   ============================================================ */
.most-read {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 56px;
  padding-top: 24px;
}

.most-read-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-soft);
  transition: opacity 0.15s;
}

.most-read-item:hover { opacity: 0.75; }

.most-read-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-style: italic;
  font-size: 44px;
  line-height: 0.9;
  color: var(--crimson);
}

.most-read-item .card-kicker {
  font-size: 10px;
  margin-bottom: 4px;
}

.most-read-item h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  margin: 0;
  color: var(--ink);
}

.most-read-item:hover h4 { color: var(--crimson); }

/* ============================================================
   ARTICLE PAGE LAYOUT
   ============================================================ */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--crimson);
  width: 0%;
  z-index: 999;
  transition: width 0.08s linear;
}

.layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 28px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 72px;
  align-items: start;
}

.article {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.article-hero {
  margin: 0 0 36px;
}

.article-hero-image {
  background-color: #2a2520;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16 / 9;
  margin-bottom: 10px;
}

.article-hero-caption {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin: 0;
  padding: 8px 0 0;
  border-top: 1px solid var(--rule-soft);
}

.article-hero-caption .credit {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10.5px;
  margin-left: 8px;
  color: var(--ink-mute);
  opacity: 0.8;
}

.kicker {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}

.headline {
  font-family: 'Playfair Display', 'Merriweather', Georgia, serif;
  font-weight: 900;
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 0 0 20px;
  color: var(--ink);
}

.deck {
  font-family: 'Source Serif 4', 'Merriweather', Georgia, serif;
  font-weight: 300;
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 32px;
  font-style: italic;
}

.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 40px;
}

.byline .author-avatar {
  width: 48px;
  height: 48px;
  font-size: 19px;
}

.byline-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.byline-author {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.byline-author a { text-decoration: none; color: inherit; }
.byline-author a:hover { color: var(--crimson); }

.byline-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}

.byline-secondary .dot { margin: 0 8px; opacity: 0.5; }

.byline-share {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.share-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s;
}

.share-btn:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ===== ARTICLE BODY ===== */
.article-body {
  font-family: 'Source Serif 4', 'Merriweather', Georgia, 'Times New Roman', serif;
  font-size: 19.5px;
  line-height: 1.72;
  color: var(--ink);
}

.article-body p {
  margin: 0 0 1.4em;
}

/* True magazine drop cap */
.article-body > p:first-of-type::first-letter {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 5.6em;
  float: left;
  line-height: 0.82;
  padding: 6px 14px 0 0;
  color: var(--ink);
  font-style: italic;
}

.article-body a {
  color: var(--crimson);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(138, 15, 31, 0.4);
  transition: color 0.15s, text-decoration-color 0.15s;
}

.article-body a:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

/* Pull quote -- editorial style */
.article-body blockquote {
  margin: 36px 0 36px -28px;
  padding: 14px 0 14px 32px;
  border-left: 3px solid var(--crimson);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.32;
  color: var(--ink);
  letter-spacing: -0.005em;
}

.article-body blockquote::before {
  content: "\201C";
  font-size: 1.1em;
  line-height: 0;
  margin-right: 4px;
  color: var(--crimson);
  vertical-align: -0.3em;
}

.article-body blockquote::after {
  content: "\201D";
  font-size: 1.1em;
  line-height: 0;
  margin-left: 2px;
  color: var(--crimson);
  vertical-align: -0.3em;
}

.article-body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88em;
  background: var(--paper-deep);
  padding: 2px 6px;
  border-radius: 2px;
}

.article-body img {
  width: 100%;
  margin: 28px 0 8px;
}

.article-body figure {
  margin: 28px 0;
}

.article-body figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.5;
  padding: 8px 0 0;
  border-top: 1px solid var(--rule-soft);
}

/* Article footer */
.article-footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 6px 12px;
  border: 1px solid var(--rule);
  text-decoration: none;
  background: var(--surface);
  transition: all 0.15s;
}

.tag:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.back-link {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  text-decoration: none;
}

.back-link:hover { color: var(--ink); }

/* Newsletter card at end of article */
.newsletter-card {
  background: var(--ink);
  color: var(--paper);
  padding: 36px 32px;
  margin: 48px 0;
  text-align: center;
}

.newsletter-card .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #d6b25b;
  margin-bottom: 14px;
}

.newsletter-card h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #fffaeb;
}

.newsletter-card p {
  font-family: 'Source Serif 4', serif;
  font-size: 15px;
  line-height: 1.55;
  color: #d8d0bd;
  max-width: 46ch;
  margin: 0 auto 22px;
}

.newsletter-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid #4a4540;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 12px 16px;
  color: #fffaeb;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
}

.newsletter-form input::placeholder { color: #8a8275; }

.newsletter-form button {
  background: #d6b25b;
  color: var(--ink);
  border: 0;
  padding: 12px 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
}

.newsletter-form button:hover { background: #e8c66a; }

/* ============================================================
   ARTICLE-PAGE SIDEBAR
   ============================================================ */
.sidebar {
  position: sticky;
  top: 76px;
  align-self: start;
}

.sidebar-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}

.sidestory {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-soft);
  transition: opacity 0.15s;
}

.sidestory:hover { opacity: 0.7; }

.sidestory-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 6px;
}

.sidestory h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 17.5px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--ink);
}

.sidestory:hover h3 { color: var(--crimson); }

.sidestory-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.ad-slot {
  margin-top: 32px;
  padding: 20px;
  background: var(--paper-deep);
  border: 1px dashed var(--rule);
  text-align: center;
}

.ad-slot .label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}

.ad-slot .placeholder {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: #d8d0bd;
  margin-top: 64px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 28px 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2a2520;
}

.footer-brand .footer-wordmark {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  color: #fffaeb;
  margin-bottom: 14px;
}

.footer-brand .footer-wordmark .amp { color: #d6b25b; font-weight: 400; }

.footer-brand p {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: #a8a08b;
  margin: 0 0 18px;
  max-width: 32ch;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d6b25b;
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li { margin-bottom: 9px; }

.footer-col a {
  text-decoration: none;
  color: #c8c0ab;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  transition: color 0.15s;
}

.footer-col a:hover { color: #fffaeb; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: #8a8275;
  letter-spacing: 0.04em;
}

.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8275;
  text-decoration: none;
}

.footer-legal a:hover { color: #fffaeb; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-row { grid-template-columns: 1fr; gap: 36px; }
  .feature-band { grid-template-columns: 1fr 1fr; }
  .feature-band .feature-lead { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 36px 22px 56px;
  }
  .sidebar { position: static; }
  .breaking-bar-inner { flex-wrap: wrap; gap: 8px; }
  .breaking-text { width: 100%; order: 3; }
  .article-body { font-size: 18px; }
  .article-body blockquote { font-size: 22px; margin-left: 0; }
  .home { padding: 28px 22px 24px; }
  .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
  .feature-band { grid-template-columns: 1fr; }
  .opinion-band { grid-template-columns: 1fr; }
  .most-read { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .top-strip-links { gap: 14px; }
  .top-strip-inner { padding: 8px 22px; }
}

@media (max-width: 540px) {
  .topnav a { padding: 12px 14px; font-size: 11.5px; letter-spacing: 0.1em; }
  .masthead-inner { padding: 22px 16px 18px; }
  .article-body > p:first-of-type::first-letter { font-size: 4.4em; }
  .story-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .tagline::before, .tagline::after { width: 16px; margin: 0 8px; }
  .top-strip-date { display: none; }
  .section-divider { margin: 36px auto 18px; padding: 0 22px; }
  .section-divider .label { font-size: 15px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { padding: 14px; }
}
