/* ═══════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════ */
:root {
  --ink:        #0e0d0b;
  --ink-2:      #252320;
  --paper:      #f7f4ee;
  --warm:       #fdfaf5;
  --cream:      #f2ede4;
  --muted:      #7a7367;
  --faint:      #b8b2a6;
  --rule:       #d8d2c8;
  --rule-light: #e8e3da;
  --accent:     #b5440e;
  --accent-2:   #ddb898;
  --accent-pale:#f5ede6;
  --gold:       #c9981a;
  --green:      #2a7a4e;
  --red:        #b5200e;
  --dark:       #0e0d0b;
  --nav-h:      60px;
  --col:        clamp(18px, 5vw, 88px);
  --max-w:      1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════
   UTILITY
═══════════════════════════════════ */
.mono {
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.07em;
}
.serif { font-family: 'Playfair Display', 'Georgia', serif; }
.caps {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.65rem;
  font-family: 'DM Mono', monospace;
}
.accent { color: var(--accent); }
.muted { color: var(--muted); }

/* shimmer skeleton */
.sk {
  display: inline-block; height: 1em; width: 72px;
  background: linear-gradient(90deg,var(--rule) 25%,var(--faint) 50%,var(--rule) 75%);
  background-size: 200% 100%;
  animation: sk 1.4s ease infinite;
  border-radius: 2px; vertical-align: middle;
}
@keyframes sk { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }

/* ═══════════════════════════════════
   WORDPRESS LAYOUT (replaces SPA .page toggles)
═══════════════════════════════════ */
.site-main { min-height: 100vh; }
body.he-single .site-main { background: var(--paper); }

/* ═══════════════════════════════════
   NAV — newspaper masthead style
═══════════════════════════════════ */
.nav-masthead {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--ink);
}
.nav-top-strip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--col);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: #fff; cursor: pointer; white-space: nowrap;
  text-decoration: none; letter-spacing: 0.01em;
  flex-shrink: 0;
}
.nav-wordmark em { color: var(--accent-2); font-style: normal; }

.nav-links {
  display: flex; gap: 32px; list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  cursor: pointer; position: relative;
  transition: color 0.2s; text-decoration: none;
  background: none; border: none; padding: 0;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px;
  left: 0; right: 0; height: 1px; background: var(--accent-2);
}

/* ticker strip below nav */
.nav-ticker {
  height: 28px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center;
  overflow: hidden; position: relative;
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 38s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.ticker-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 32px;
  font-family: 'DM Mono', monospace; font-size: 0.58rem;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.45);
  border-right: 1px solid rgba(255,255,255,0.07);
}
.ticker-item .t-val { color: rgba(255,255,255,0.8); }
.ticker-item .t-chg { font-size: 0.55rem; }
.ticker-item .t-chg.up { color: #4caf82; }
.ticker-item .t-chg.down { color: #e05656; }
.ticker-sep { color: rgba(255,255,255,0.15); }

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 36px; height: 36px; gap: 5px;
  background: none; border: none; cursor: pointer;
}
.nav-burger span {
  display: block; width: 20px; height: 1.5px;
  background: rgba(255,255,255,0.7); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none; position: fixed;
  top: calc(var(--nav-h) + 28px); left: 0; right: 0;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 850; padding: 20px var(--col) 28px;
  flex-direction: column;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); cursor: pointer;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none; background: none; border-left: none; border-right: none; border-top: none; outline: none;
  display: block; transition: color 0.2s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a.active, .nav-drawer a:hover { color: #fff; }

/* ═══════════════════════════════════
   TOTAL NAV HEIGHT
═══════════════════════════════════ */
.page-offset { padding-top: calc(var(--nav-h) + 28px); }

/* ═══════════════════════════════════
   HOME — EDITORIAL HERO
═══════════════════════════════════ */
.editorial-hero {
  background: var(--ink);
  position: relative; overflow: hidden;
}
/* grain texture overlay */
.editorial-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
}
.editorial-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 220px; pointer-events: none; z-index: 0;
  background: linear-gradient(to top, rgba(14,13,11,0.95), transparent);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(48px,8vh,100px) var(--col) clamp(40px,6vh,72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
}
.hero-text-col {
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-issue-line {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.hero-issue-line::before {
  content: ''; display: block;
  width: 36px; height: 1px; background: var(--accent-2); flex-shrink: 0;
}
.hero-overline {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-2);
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 6.5vw, 6.2rem);
  line-height: 0.93;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic; font-weight: 400;
  color: var(--accent-2);
}
.hero-deck {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-byline-block {
  display: flex; align-items: center; gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: #fff; font-weight: 700;
  border: 2px solid rgba(255,255,255,0.15);
  overflow: hidden;
}
.hero-avatar img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.hero-byline-text {}
.hero-byline-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 500; color: #fff;
}
.hero-byline-role {
  font-family: 'DM Mono', monospace; font-size: 0.55rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.hero-cta-row {
  display: flex; align-items: center; gap: 20px;
  margin-top: 28px; flex-wrap: wrap;
}
.btn-primary {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--accent); color: #fff;
  padding: 12px 24px; border: none; cursor: pointer;
  transition: background 0.2s; text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: #9e3a0b; }
.btn-ghost {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: none; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 24px; cursor: pointer;
  transition: all 0.2s; text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* Hero right — live data panel */
.hero-data-col {
  display: flex; flex-direction: column; gap: 16px;
}
.data-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.data-panel-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.data-panel-lbl {
  font-family: 'DM Mono', monospace; font-size: 0.54rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  display: flex; align-items: center; gap: 8px;
}
.data-panel-body { padding: 14px 16px; }

/* gold row */
.gold-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
}
.gold-cell {
  background: rgba(255,255,255,0.03);
  padding: 12px 14px;
}
.gold-cell-lbl { font-family: 'DM Mono', monospace; font-size: 0.5rem; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 5px; }
.gold-cell-val { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; color: rgba(255,255,255,0.88); }
.gold-cell-sub { font-size: 0.52rem; color: rgba(255,255,255,0.25); margin-top: 2px; font-family: 'DM Mono', monospace; }

/* market mini tiles */
.market-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.06); }
.mm-tile {
  background: rgba(255,255,255,0.03);
  padding: 10px 14px;
}
.mm-lbl { font-family: 'DM Mono', monospace; font-size: 0.5rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 4px; }
.mm-val { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.mm-chg { font-family: 'DM Mono', monospace; font-size: 0.52rem; margin-top: 2px; }
.mm-chg.up { color: #4caf82; }
.mm-chg.down { color: #e05656; }

/* oil band */
.oil-band {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 12px 16px; flex-wrap: wrap; gap: 8px;
}
.oil-band-left {}
.oil-band-lbl { font-family: 'DM Mono', monospace; font-size: 0.5rem; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 3px; }
.oil-band-val { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 500; color: rgba(255,255,255,0.88); }
.oil-band-chg { font-family: 'DM Mono', monospace; font-size: 0.55rem; }
.oil-band-chg.up { color: #4caf82; }
.oil-band-chg.down { color: #e05656; }

/* chart */
.chart-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 14px 16px;
}
.chart-panel-hdr { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; flex-wrap: wrap; gap: 4px; }
.chart-panel-ttl { font-family: 'Playfair Display', serif; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.chart-panel-meta { font-family: 'DM Mono', monospace; font-size: 0.5rem; color: rgba(255,255,255,0.25); text-align: right; }
canvas#spChart { width: 100% !important; height: 90px !important; display: block; }

/* nrb row */
.nrb-mini { display: flex; gap: 10px; flex-wrap: wrap; }
.nrb-mini-card { flex: 1; min-width: 80px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); padding: 10px 12px; }
.nrb-mini-lbl { font-family: 'DM Mono', monospace; font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 4px; }
.nrb-mini-val { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.8); }

/* data attribution */
.data-attr {
  font-family: 'DM Mono', monospace; font-size: 0.5rem;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.18);
  line-height: 1.6;
  margin-top: 4px;
}

/* ═══════════════════════════════════
   RULE / DIVIDER
═══════════════════════════════════ */
.ed-rule {
  display: flex; align-items: center; gap: 20px;
  padding: 0 var(--col);
  max-width: var(--max-w); margin: 0 auto;
}
.ed-rule::before, .ed-rule::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.ed-rule-text {
  font-family: 'DM Mono', monospace; font-size: 0.55rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint);
  white-space: nowrap;
}

/* ═══════════════════════════════════
   PHILOSOPHY STRIP — key differentiator
═══════════════════════════════════ */
.philosophy-strip {
  background: var(--accent);
  padding: clamp(36px,5vh,56px) var(--col);
}
.philosophy-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(24px,5vw,80px); align-items: center;
}
.philosophy-label {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.philosophy-pullquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem,2.5vw,1.9rem);
  font-weight: 400; font-style: italic;
  color: #fff; line-height: 1.4;
}
.philosophy-pullquote strong {
  font-style: normal; font-weight: 700;
}

/* ═══════════════════════════════════
   FEATURED ARTICLE STRIP
═══════════════════════════════════ */
.featured-strip {
  padding: clamp(48px,7vh,88px) var(--col);
  max-width: var(--max-w); margin: 0 auto;
}
.section-heading {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 36px; flex-wrap: wrap; gap: 10px;
  padding-bottom: 14px; border-bottom: 2px solid var(--ink);
}
.section-heading-ttl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem,3vw,2rem); font-weight: 700;
  letter-spacing: -0.01em;
}
.section-heading-more {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); cursor: pointer;
  text-decoration: none; background: none; border: none; padding: 0;
}
.section-heading-more:hover { text-decoration: underline; }

/* Article cards grid */
.articles-grid-home {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1px; background: var(--rule);
}
/* Economist-style article previews */
.a-card {
  background: var(--paper);
  position: relative;
  transition: background 0.18s;
}
.a-card:hover { background: var(--warm); }
.a-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px 24px 22px;
  text-decoration: none;
  color: inherit;
}
.a-card--has-media .a-card-link { padding-top: 0; }
.a-card-media {
  margin: 0 -1px 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.a-card-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.a-card:hover .a-card-media img { transform: scale(1.02); }
.a-card-body { display: flex; flex-direction: column; flex: 1; }
.a-card--has-media .a-card-body { padding-top: 18px; }
.a-fly {
  font-family: 'DM Mono', monospace;
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
  padding-left: 10px;
  border-left: 3px solid var(--accent);
  line-height: 1.3;
}
.a-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 0.18s;
}
.a-card:hover .a-title { color: var(--accent); }
.a-standfirst {
  font-family: 'EB Garamond', serif;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.a-meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--rule-light);
}
.a-meta-sep { margin: 0 6px; opacity: 0.6; }
.a-card.featured .a-card-link { padding: 0; }
.a-card.featured .a-card-media img { aspect-ratio: 16/9; }
.a-card.featured .a-card-body { padding: 28px 30px 26px; }
.a-card.featured .a-title {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.15;
}
.a-card.featured .a-standfirst {
  font-size: 1rem;
  line-height: 1.7;
  -webkit-line-clamp: 4;
}
@media (min-width: 1000px) {
  .articles-grid-home .a-card.featured .a-card-link {
    flex-direction: row;
    align-items: stretch;
  }
  .articles-grid-home .a-card.featured .a-card-media {
    flex: 0 0 48%;
    margin: 0;
    border-bottom: none;
    border-right: 1px solid var(--rule);
  }
  .articles-grid-home .a-card.featured .a-card-body {
    flex: 1;
    padding: 28px 30px;
    justify-content: center;
  }
}
.a-card--compact .a-card-link { padding: 20px 18px; }
.a-card--compact .a-title { font-size: 1rem; }
.a-card--compact .a-standfirst {
  font-size: 0.86rem;
  -webkit-line-clamp: 2;
  margin-bottom: 10px;
}
/* legacy aliases */
.a-tag { display: none; }
.a-excerpt { display: none; }
.a-read { display: none; }

/* ── standard card grid (articles page) ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--rule);
}

/* empty state */
.a-empty { grid-column: 1/-1; padding: 64px 20px; text-align: center; }
.a-empty-ttl { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 400; margin-bottom: 10px; }
.a-empty-sub { font-size: 0.88rem; color: var(--muted); }

/* ═══════════════════════════════════
   POLICY WATCH
═══════════════════════════════════ */
.policy-section {
  background: var(--ink);
  padding: clamp(36px,5vh,56px) var(--col);
}
.policy-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 200px 1fr; gap: clamp(24px,5vw,72px);
  align-items: start;
}
.policy-sidebar-label {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem,2vw,1.6rem); font-weight: 700;
  color: #fff; line-height: 1.2;
}
.policy-sidebar-sub {
  font-family: 'DM Mono', monospace; font-size: 0.54rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-top: 8px;
}
.policy-items {}
.policy-item {
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  display: grid; grid-template-columns: 90px 1fr; gap: 16px;
}
.policy-item:last-child { border-bottom: none; }
.policy-date {
  font-family: 'DM Mono', monospace; font-size: 0.54rem;
  letter-spacing: 0.12em; color: var(--accent-2);
  text-transform: uppercase; padding-top: 2px;
}
.policy-text { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ═══════════════════════════════════
   AUTHOR FEATURE — new spike section
═══════════════════════════════════ */
.author-feature {
  background: var(--cream);
  padding: clamp(48px,7vh,88px) var(--col);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.author-feature-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,7vw,100px); align-items: center;
}
.author-feature-left {}
.author-feature-overline {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.author-feature-overline::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--accent);
}
.author-feature-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700;
  line-height: 1.1; margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.author-feature-body {
  font-size: clamp(0.95rem,1.4vw,1.08rem);
  color: var(--muted); line-height: 1.85;
  margin-bottom: 28px;
}
.author-feature-body + .author-feature-body { margin-top: -16px; }
.author-stats-row {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 28px;
}
.author-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 400; color: var(--accent);
  line-height: 1;
}
.author-stat-l {
  font-family: 'DM Mono', monospace; font-size: 0.5rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}
.author-feature-right {
  position: relative;
}
.author-photo-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.author-photo-frame::before {
  content: ''; position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1px solid var(--accent);
  opacity: 0.45;
}
.author-photo {
  width: 100%; display: block;
  aspect-ratio: 4/5;
  object-fit: cover; object-position: center top;
  position: relative; z-index: 1;
  background: var(--accent-pale);
}
.author-photo-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.author-photo-initials {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; color: rgba(255,255,255,0.1);
}
.author-caption {
  font-family: 'DM Mono', monospace; font-size: 0.52rem;
  letter-spacing: 0.1em; color: var(--faint);
  margin-top: 12px;
}

/* values */
.values-grid-home {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--rule);
  margin-top: 36px;
}
.val-block {
  background: var(--cream);
  padding: 24px 20px;
}
.val-n { font-family: 'DM Mono', monospace; font-size: 0.56rem; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 10px; }
.val-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.val-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════
   ARTICLES PAGE
═══════════════════════════════════ */
.articles-page { }
.articles-masthead {
  background: var(--ink);
  padding: clamp(40px,6vh,72px) var(--col) clamp(28px,4vh,48px);
  position: relative; overflow: hidden;
}
.articles-masthead::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.015) 79px, rgba(255,255,255,0.015) 80px);
}
.articles-masthead-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.articles-eyebrow { color: var(--accent-2); margin-bottom: 12px; }
.articles-ttl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 900;
  letter-spacing: -0.02em; color: #fff;
  line-height: 1.0;
  margin-bottom: 10px;
}
.articles-sub { font-size: 0.92rem; color: rgba(255,255,255,0.45); max-width: 480px; font-family: 'EB Garamond', serif; }

.filter-bar {
  display: flex; gap: 0; flex-wrap: wrap;
  border-bottom: 2px solid var(--ink);
  max-width: var(--max-w); margin: 0 auto;
}
.filter-btn {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 14px 22px; border: none; border-right: 1px solid var(--rule);
  background: transparent; cursor: pointer; color: var(--muted);
  transition: all 0.18s;
}
.filter-btn:hover { color: var(--ink); background: var(--cream); }
.filter-btn.active { background: var(--ink); color: #fff; }

.articles-grid-full {
  padding: clamp(28px,4vh,48px) var(--col) clamp(48px,8vh,96px);
  max-width: var(--max-w); margin: 0 auto;
}
.articles-inner-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--rule);
}

/* ═══════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════ */
.about-page {}
.about-hero {
  background: var(--ink);
  padding: clamp(48px,7vh,88px) var(--col);
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(181,68,14,0.22) 0%, transparent 55%),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.015) 39px, rgba(255,255,255,0.015) 40px);
}
.about-hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(32px,6vw,88px); align-items: center;
  position: relative; z-index: 1;
}
.about-photo-wrap {
  width: clamp(140px,20vw,240px);
  height: clamp(180px,26vw,306px);
  flex-shrink: 0; position: relative;
}
.about-photo-wrap::before {
  content: ''; position: absolute;
  top: 12px; left: 12px; right: -12px; bottom: -12px;
  border: 1px solid rgba(181,68,14,0.5);
}
.about-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; position: relative; z-index: 1;
}
.about-photo-placeholder {
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.about-photo-initials { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: rgba(255,255,255,0.15); }
.about-content {}
.about-eyebrow { color: var(--accent-2); margin-bottom: 14px; }
.about-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 900;
  color: #fff; line-height: 1.0; margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.about-role {
  font-family: 'DM Mono', monospace; font-size: 0.6rem;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.35);
  text-transform: uppercase; margin-bottom: 24px;
}
.about-text {
  font-size: 0.96rem; color: rgba(255,255,255,0.6);
  line-height: 1.85; max-width: 560px; margin-bottom: 18px;
  font-family: 'EB Garamond', serif;
}
.about-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.about-stat-n { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 400; color: var(--accent-2); }
.about-stat-l { font-family: 'DM Mono', monospace; font-size: 0.5rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-top: 3px; }

/* contact */
.contact-box {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  padding: 24px 28px; max-width: 380px;
}
.contact-box-title {
  font-family: 'DM Mono', monospace; font-size: 0.54rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.contact-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(181,68,14,0.15); border: 1px solid rgba(181,68,14,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; color: var(--accent-2);
}
.contact-lbl { font-family: 'DM Mono', monospace; font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.contact-val { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-top: 1px; }
.contact-val a { color: var(--accent-2); text-decoration: none; }
.contact-val a:hover { color: #fff; }

/* mission */
.mission-section {
  padding: clamp(48px,7vh,80px) var(--col);
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  border-bottom: 1px solid var(--rule);
  max-width: var(--max-w); margin: 0 auto;
}
.mission-block { background: var(--warm); border: 1px solid var(--rule); border-top: 3px solid var(--accent); padding: clamp(24px,3vw,36px); }
.mission-ttl { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; margin-bottom: 14px; }
.mission-txt { font-size: 0.88rem; color: var(--muted); line-height: 1.85; font-family: 'EB Garamond', serif; }

/* values full */
.values-section {
  padding: clamp(48px,7vh,80px) var(--col);
  border-bottom: 1px solid var(--rule);
  max-width: var(--max-w); margin: 0 auto;
}
.values-ttl { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 700; margin-bottom: 36px; }
.values-grid-full { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.val-card { background: var(--warm); border: 1px solid var(--rule); padding: 24px 20px; }
.val-n-full { font-family: 'DM Mono', monospace; font-size: 0.56rem; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 10px; }
.val-name-full { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.val-desc-full { font-size: 0.8rem; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.4);
  padding: clamp(40px,6vh,64px) var(--col) 28px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 900; letter-spacing: 0.01em; color: #fff; margin-bottom: 10px; }
.footer-brand span { color: var(--accent-2); }
.footer-desc { font-size: 0.84rem; line-height: 1.75; margin-bottom: 16px; font-family: 'EB Garamond', serif; }
.footer-col-ttl { font-family: 'DM Mono', monospace; font-size: 0.54rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.4); text-decoration: none; cursor: pointer; transition: color 0.18s; background: none; border: none; padding: 0; }
.footer-links a:hover { color: #fff; }
.footer-btm {
  display: flex; justify-content: space-between;
  font-family: 'DM Mono', monospace; font-size: 0.56rem;
  color: rgba(255,255,255,0.18); flex-wrap: wrap; gap: 8px;
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-data-col { display: none; }
  .philosophy-inner { grid-template-columns: 1fr; }
  .author-feature-inner { grid-template-columns: 1fr; }
  .author-feature-right { display: none; }
  .articles-grid-home { grid-template-columns: 1fr 1fr; }
  .policy-inner { grid-template-columns: 1fr; gap: 20px; }
  .values-grid-home { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-photo-wrap { width: clamp(110px,35vw,180px); height: clamp(140px,44vw,225px); }
  .mission-section { grid-template-columns: 1fr; }
  .values-grid-full { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .cards-grid, .articles-inner-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .articles-grid-home { grid-template-columns: 1fr; }
  .values-grid-home { grid-template-columns: 1fr; }
  .values-grid-full { grid-template-columns: 1fr; }
  .policy-item { grid-template-columns: 1fr; gap: 4px; }
  .author-stats-row { gap: 20px; }
}
@media (max-width: 480px) {
  :root { --col: 16px; }
  .hero-headline { font-size: 2.8rem; }
  .gold-row { grid-template-columns: 1fr 1fr; }
  .nrb-mini { }
}

/* ═══════════════════════════════════
   SINGLE ARTICLE — Economist-inspired editorial
═══════════════════════════════════ */
body.he-single .site-main {
  background: var(--warm);
}

.article-story {
  background: var(--warm);
  border-bottom: 1px solid var(--rule);
}

/* Leader: fly, headline, standfirst, byline on paper */
.article-leader {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: clamp(36px, 5vh, 56px) var(--col) clamp(28px, 4vh, 40px);
}
.article-leader-inner {
  max-width: 680px;
  margin: 0 auto;
}
.article-fly {
  margin: 0 0 14px;
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.article-fly a {
  color: var(--accent);
  text-decoration: none;
  padding-left: 10px;
  border-left: 3px solid var(--accent);
  display: inline-block;
  line-height: 1.35;
}
.article-fly a:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.article-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4.8vw, 3.25rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 18px;
}
.article-standfirst {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 22px;
  font-weight: 500;
}
.article-rule {
  height: 0;
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0 0 18px;
}
.article-byline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.article-byline-main {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-byline-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--rule);
}
.article-byline-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.article-byline-author {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
}
.article-byline-author a {
  color: var(--ink);
  text-decoration: none;
}
.article-byline-author a:hover {
  color: var(--accent);
}
.article-byline-meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-byline-sep {
  margin: 0 8px;
  opacity: 0.45;
}
.article-back-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.54rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding-top: 4px;
  white-space: nowrap;
}
.article-back-link:hover {
  text-decoration: underline;
}

/* Hero image */
.article-hero {
  background: var(--paper);
  margin: 0;
  padding: 0 var(--col) clamp(28px, 4vh, 40px);
}
.article-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.article-hero-img {
  width: 100%;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
  border: 1px solid var(--rule);
}
.article-hero-caption {
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
  padding-left: 10px;
  border-left: 2px solid var(--rule);
}

/* Body column */
.article-body {
  background: var(--paper);
  padding: clamp(36px, 5vh, 52px) var(--col) clamp(48px, 7vh, 72px);
}
.article-body-inner {
  max-width: 680px;
  margin: 0 auto;
}
.single-content {
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem;
  line-height: 1.78;
  color: var(--ink-2);
}
.single-content > *:first-child { margin-top: 0; }

/* Drop cap — Economist hallmark */
.single-content > p:first-of-type::first-letter {
  float: left;
  font-family: 'Playfair Display', serif;
  font-size: 4.2em;
  line-height: 0.78;
  font-weight: 700;
  margin: 0.04em 0.1em 0 0;
  color: var(--ink);
}
.single-content > p:first-of-type {
  margin-top: 0;
}

.single-content h2,
.single-content h3,
.single-content h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.single-content h2 {
  font-size: 1.65rem;
  margin: 2.4em 0 0.65em;
  padding-top: 0.2em;
}
.single-content h3 {
  font-size: 1.28rem;
  margin: 2em 0 0.5em;
}
.single-content h4 {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin: 2em 0 0.75em;
}
.single-content p {
  margin: 0 0 1.35em;
}
.single-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.single-content a:hover {
  color: var(--ink);
}
.single-content ul,
.single-content ol {
  margin: 0 0 1.35em 1.1em;
  padding: 0;
}
.single-content li {
  margin-bottom: 0.45em;
  padding-left: 0.25em;
}
.single-content li::marker {
  color: var(--accent);
}

/* Pull quotes */
.single-content blockquote,
.single-content .wp-block-quote {
  margin: 2.25em 0;
  padding: 1.5em 0 1.5em 0;
  border: none;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  background: transparent;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}
.single-content blockquote p:last-child,
.single-content .wp-block-quote p:last-child {
  margin-bottom: 0;
}
.single-content blockquote cite,
.single-content .wp-block-quote cite {
  display: block;
  margin-top: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.single-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em 0;
}
.single-content figure {
  margin: 2.25em 0;
}
.single-content figure img {
  margin: 0;
  border: 1px solid var(--rule);
}
.single-content figcaption,
.single-content .wp-element-caption {
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
  padding-left: 10px;
  border-left: 2px solid var(--rule-light);
}
.single-content pre,
.single-content code {
  font-family: 'DM Mono', monospace;
  font-size: 0.82em;
}
.single-content pre {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 1em 1.15em;
  overflow-x: auto;
  margin: 1.75em 0;
  line-height: 1.55;
}
.single-content .wp-block-separator {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 2.5em 0;
}

/* Tags */
.article-tags {
  margin-top: 2.5em;
  padding-top: 1.25em;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}
.article-tags-lbl {
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.article-tags a {
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid var(--rule);
  padding: 5px 10px;
  transition: all 0.18s;
}
.article-tags a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Continue reading */
.article-continue {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  padding: 0 var(--col);
}
.article-continue-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
}
.article-continue-item {
  background: var(--paper);
  padding: 24px 28px;
  text-decoration: none;
  transition: background 0.18s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-continue-item:hover {
  background: var(--warm);
}
.article-continue-item--next {
  text-align: right;
}
.article-continue-dir {
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.article-continue-ttl {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

/* More from strip */
.article-more {
  background: var(--ink);
  padding: clamp(40px, 6vh, 56px) var(--col);
}
.article-more-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.article-more-hdr {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.article-more-ttl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.article-more-all {
  font-family: 'DM Mono', monospace;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  text-decoration: none;
}
.article-more-all:hover {
  color: #fff;
}
.article-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.article-more-grid .a-card {
  background: rgba(255, 255, 255, 0.03);
}
.article-more-grid .a-card:hover {
  background: rgba(255, 255, 255, 0.06);
}
.article-more-grid .a-fly {
  color: var(--accent-2);
  border-color: var(--accent-2);
}
.article-more-grid .a-title {
  color: rgba(255, 255, 255, 0.92);
}
.article-more-grid .a-card:hover .a-title {
  color: #fff;
}
.article-more-grid .a-standfirst {
  color: rgba(255, 255, 255, 0.45);
}
.article-more-grid .a-meta {
  color: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .article-more-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .article-continue-inner {
    grid-template-columns: 1fr;
  }
  .article-continue-item--next {
    text-align: left;
  }
  .single-content > p:first-of-type::first-letter {
    font-size: 3.4em;
  }
}

/* pagination */
.navigation.pagination {
  margin-top: 32px;
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}
.navigation.pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.navigation.pagination a,
.navigation.pagination span {
  padding: 8px 12px;
  border: 1px solid var(--rule);
  text-decoration: none;
  color: var(--muted);
}
.navigation.pagination span.current {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.navigation.pagination a:hover {
  background: var(--cream);
  color: var(--ink);
}
