/* ═══════════════════════════════════════════════════
   HITECHIES — Editorial Tech v4.0
   Inspired by: dense tech journalism, not copied
   Aesthetic: Sharp · Monochrome base · Neon signal
   ═══════════════════════════════════════════════════ */

/* Fonts loaded via preload in default.hbs for better mobile LCP */

/* ── FONT DISPLAY SWAP for mobile LCP ── */
@font-face {
  font-family: 'Space Grotesk';
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  font-display: swap;
}
@font-face {
  font-family: 'Space Mono';
  font-display: swap;
}



/* ── GHOST REQUIRED ── */
:root {
  --gh-font-heading: 'Fraunces', Georgia, serif;
  --gh-font-body:    'Space Grotesk', system-ui, sans-serif;
}

/* ── RESET ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: #ffffff;
  color: #0a0a0a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── TOKENS ── */
:root {
  /* Core */
  --white:   #ffffff;
  --black:   #0a0a0a;
  --ink:     #111111;
  --ink2:    #333333;
  --ink3:    #666666;
  --ink4:    #999999;

  /* Surface */
  --bg:      #ffffff;
  --bg2:     #f7f7f7;
  --bg3:     #f0f0f0;
  --bg4:     #e8e8e8;

  /* Borders */
  --rule:    #e0e0e0;
  --rule2:   #cccccc;
  --rule3:   #b0b0b0;

  /* Brand — teal signal, not neon green (Hitechies own identity) */
  --signal:  #00c896;
  --signal2: #00a07a;
  --signal-bg: rgba(0,200,150,0.08);
  --signal-border: rgba(0,200,150,0.25);

  /* Section accents */
  --ai:      #6c5ce7;
  --crypto:  #f39c12;
  --sec:     #e74c3c;
  --code:    #0984e3;
  --pod:     #00b894;
  --start:   #e84393;

  /* Type */
  --head:    'Fraunces', Georgia, serif;
  --body:    'Space Grotesk', system-ui, sans-serif;
  --mono:    'Space Mono', 'Courier New', monospace;

  --max:     1240px;
  --pad:     1.5rem;
}

/* ── COLOR UTILS ── */
.c-ai     { color: var(--ai)!important }
.c-crypto { color: var(--crypto)!important }
.c-sec,.c-security { color: var(--sec)!important }
.c-code   { color: var(--code)!important }
.c-pod,.c-podcast  { color: var(--pod)!important }
.c-start,.c-startups { color: var(--start)!important }
.c-signal { color: var(--signal)!important }

/* ── TICKER ── */
.ticker {
  height: 36px; overflow: hidden;
  background: var(--black);
  display: flex; align-items: center;
  border-bottom: 2px solid var(--signal);
}
.ticker-track {
  display: flex;
  animation: ticker 70s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.tick {
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .06em;
  padding: 0 2rem;
  display: flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.5);
  border-right: 1px solid rgba(255,255,255,.08);
  transition: color .15s;
}
.tick:hover { color: var(--signal); }
.tick-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.tick-label { font-weight: 700; text-transform: uppercase; font-size: .52rem; letter-spacing: .14em; }
.tick-dot.c-ai { background: var(--ai); }
.tick-dot.c-crypto { background: var(--crypto); }
.tick-dot.c-sec,.tick-dot.c-security { background: var(--sec); }
.tick-dot.c-code { background: var(--code); }
.tick-dot.c-pod,.tick-dot.c-podcast { background: var(--pod); }
.tick-dot.c-start,.tick-dot.c-startups { background: var(--start); }

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 300;
  background: var(--white);
  border-bottom: 2px solid var(--black);
}
.nav-inner {
  max-width: var(--max); margin: auto;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  height: 56px; gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .5rem;
  flex-shrink: 0; text-decoration: none;
}
.logo-mark { width: 30px; height: 30px; flex-shrink: 0; }
.logo-word {
  font-family: var(--body);
  font-size: 1.15rem; font-weight: 700;
  letter-spacing: -.02em; color: var(--black); line-height: 1;
}
.nav-links { display: flex; list-style: none; }
.nav-links a {
  font-family: var(--mono);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink3); padding: 0 .9rem;
  height: 56px; display: flex; align-items: center;
  border-left: 1px solid var(--rule);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--black); background: var(--bg2); }
.nav-links a[data-tag="ai"]:hover    { color: var(--ai); }
.nav-links a[data-tag="crypto"]:hover { color: var(--crypto); }
.nav-links a[data-tag="security"]:hover { color: var(--sec); }
.nav-links a[data-tag="code"]:hover  { color: var(--code); }
.nav-links a[data-tag="podcast"]:hover { color: var(--pod); }
.nav-links a[data-tag="startups"]:hover { color: var(--start); }
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.btn-icon {
  background: transparent; border: 1.5px solid var(--rule2);
  color: var(--ink3); width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, color .15s;
}
.btn-icon:hover { border-color: var(--black); color: var(--black); }
.btn-subscribe {
  font-family: var(--mono); font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); background: var(--black);
  padding: .45rem 1.1rem; border: 2px solid var(--black);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.btn-subscribe:hover { background: var(--signal); border-color: var(--signal); }
.btn-subscribe--mobile { display: block; text-align: center; margin: 1rem; padding: .75rem; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink3); }
.nav-mobile { display: none; position: fixed; top: 56px; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--black); z-index: 299; padding: 1rem 0; }
.nav-mobile.open { display: block; }
.nav-mobile li a { display: block; padding: .8rem var(--pad); font-family: var(--mono); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); border-bottom: 1px solid var(--rule); }
.nav-mobile li a:hover { color: var(--black); background: var(--bg2); }

/* ── TRENDING ── */
.trending-strip {
  background: var(--bg2);
  border-bottom: 1px solid var(--rule);
}
.trending-inner {
  max-width: var(--max); margin: auto;
  padding: .6rem var(--pad);
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; scrollbar-width: none;
}
.trending-inner::-webkit-scrollbar { display: none; }
.trending-label {
  font-family: var(--mono); font-size: .6rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--signal2); flex-shrink: 0;
  margin-right: 1.2rem; padding-right: 1.2rem;
  border-right: 2px solid var(--rule2);
}
.trending-item {
  font-family: var(--body); font-size: .75rem; font-weight: 500;
  color: var(--ink3); display: flex; align-items: center; gap: .4rem;
  padding: 0 1.2rem; border-right: 1px solid var(--rule);
  white-space: nowrap; transition: color .15s; flex-shrink: 0;
}
.trending-item:hover { color: var(--black); }
.trending-num { font-family: var(--mono); font-size: .75rem; font-weight: 700; color: var(--rule2); }

/* ── SECTION HEADER ── */
.section-head {
  max-width: var(--max); margin: 0 auto;
  padding: 2.5rem var(--pad) 1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.section-head-left { display: flex; align-items: center; gap: .6rem; }
.section-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.section-dot.c-ai     { background: var(--ai); }
.section-dot.c-crypto { background: var(--crypto); }
.section-dot.c-sec    { background: var(--sec); }
.section-dot.c-code   { background: var(--code); }
.section-dot.c-pod    { background: var(--pod); }
.section-dot.c-start  { background: var(--start); }
.section-title {
  font-family: var(--mono); font-size: .75rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--black);
}
.t-ai { color: var(--ai)!important; }
.t-crypto { color: var(--crypto)!important; }
.t-sec,.t-security { color: var(--sec)!important; }
.t-code { color: var(--code)!important; }
.t-pod,.t-podcast { color: var(--pod)!important; }
.t-start,.t-startups { color: var(--start)!important; }
.section-more {
  font-family: var(--mono); font-size: .6rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink4); transition: color .15s;
  display: flex; align-items: center; gap: .3rem;
}
.section-more:hover { color: var(--signal); }

/* ── HERO ── */
.hero {
  border-bottom: 2px solid var(--black);
}
.hero-inner {
  max-width: var(--max); margin: auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 340px;
}
.hero-main {
  padding: 2.5rem var(--pad) 2.5rem var(--pad);
  border-right: 2px solid var(--black);
}
.hero-main-img {
  display: block; overflow: hidden;
  background: var(--bg3);
  aspect-ratio: 16/9;
  margin-bottom: 1.5rem;
  border: 1px solid var(--rule);
}
.hero-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.hero-main-img:hover img { transform: scale(1.02); }
.hero-main-img--empty { aspect-ratio: 16/9; background: var(--bg3); margin-bottom: 1.5rem; }
.hero-tag {
  display: inline-block;
  font-family: var(--mono); font-size: .58rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .2rem .6rem; margin-bottom: .9rem;
  border: 1.5px solid;
}
.hero-tag--ai       { color: var(--ai);     border-color: var(--ai);     background: rgba(108,92,231,.06); }
.hero-tag--crypto   { color: var(--crypto); border-color: var(--crypto); background: rgba(243,156,18,.06); }
.hero-tag--security { color: var(--sec);    border-color: var(--sec);    background: rgba(231,76,60,.06); }
.hero-tag--code     { color: var(--code);   border-color: var(--code);   background: rgba(9,132,227,.06); }
.hero-tag--podcast  { color: var(--pod);    border-color: var(--pod);    background: rgba(0,184,148,.06); }
.hero-tag--startups { color: var(--start);  border-color: var(--start);  background: rgba(232,67,147,.06); }
.hero-main h1 {
  font-family: var(--head);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900; line-height: 1.08;
  color: var(--black); margin-bottom: .9rem;
  letter-spacing: -.02em;
}
.hero-main h1 a { color: inherit; transition: color .15s; }
.hero-main h1 a:hover { color: var(--signal2); }
.hero-deck {
  font-size: 1rem; color: var(--ink3);
  line-height: 1.7; margin-bottom: 1.2rem;
  max-width: 580px;
}
.hero-byline {
  font-family: var(--mono); font-size: .62rem;
  color: var(--ink4); display: flex; align-items: center;
  gap: .6rem; flex-wrap: wrap; margin-bottom: 1.4rem;
}
.hero-byline strong { color: var(--ink2); font-weight: 700; }
.hero-read-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); background: var(--black);
  padding: .6rem 1.3rem; border: 2px solid var(--black);
  transition: background .15s, color .15s;
}
.hero-read-btn:hover { background: var(--signal); border-color: var(--signal); }

/* Hero side */
.hero-side {
  display: flex; flex-direction: column;
}
.side-card {
  display: flex; gap: 0;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  transition: background .15s;
  align-items: flex-start;
}
.side-card:hover { background: var(--bg2); }
.side-num {
  font-family: var(--mono); font-size: 1.1rem; font-weight: 700;
  color: var(--rule2); line-height: 1.2;
  flex-shrink: 0; width: 28px; padding-top: .1rem;
  transition: color .15s;
}
.side-card:hover .side-num { color: var(--signal); }
.side-body { flex: 1; min-width: 0; }
.side-tag {
  display: block; font-family: var(--mono);
  font-size: .55rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: .25rem;
}
.side-body h3 {
  font-family: var(--body); font-size: .88rem; font-weight: 600;
  line-height: 1.35; color: var(--black); margin-bottom: .2rem;
  transition: color .15s;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.side-card:hover h3 { color: var(--signal2); }
.side-meta { font-family: var(--mono); font-size: .58rem; color: var(--ink4); }

/* ── CARD GRID ── */
.section-grid {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad) 0;
  display: grid; gap: 0;
  border: 1px solid var(--rule);
  border-top: 2px solid var(--black);
  margin-left: var(--pad); margin-right: var(--pad);
  max-width: calc(var(--max) - 0px);
}
.section-grid { margin: 0 auto; padding: 0; }
.section-grid-wrap {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
}
.section-grid {
  display: grid; gap: 0;
  border: 1.5px solid var(--black);
  border-top: none;
}
.section-grid--4 { grid-template-columns: repeat(4, 1fr); }
.section-grid--3 { grid-template-columns: repeat(3, 1fr); }
.section-grid--archive { border: none; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: background .18s;
  position: relative;
  border-right: 1px solid var(--rule);
}
.card:last-child { border-right: none; }
.card:hover { background: var(--bg2); }

/* Colored left border on hover */
.card::before {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px; background: transparent;
  transition: background .18s;
}
.card:hover::before { background: var(--signal); }
.card--ai:hover::before    { background: var(--ai); }
.card--crypto:hover::before { background: var(--crypto); }
.card--security:hover::before { background: var(--sec); }
.card--code:hover::before  { background: var(--code); }
.card--podcast:hover::before { background: var(--pod); }
.card--startups:hover::before { background: var(--start); }

.card-thumb {
  display: block; overflow: hidden;
  background: var(--bg3); aspect-ratio: 16/9;
  border-bottom: 1px solid var(--rule);
}
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.card:hover .card-thumb img { transform: scale(1.03); }
.card-thumb--empty { display: flex; align-items: center; justify-content: center; }
.card-thumb--empty span { font-family: var(--mono); font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink4); }
.card-body { padding: 1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.card-tag {
  font-family: var(--mono); font-size: .58rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: .4rem; display: inline-block;
}
.card--ai .card-tag       { color: var(--ai); }
.card--crypto .card-tag   { color: var(--crypto); }
.card--security .card-tag { color: var(--sec); }
.card--code .card-tag     { color: var(--code); }
.card--podcast .card-tag  { color: var(--pod); }
.card--startups .card-tag { color: var(--start); }
.card-title {
  font-family: var(--body); font-size: .93rem; font-weight: 700;
  line-height: 1.35; color: var(--black); margin-bottom: .45rem;
}
.card-title a { color: inherit; transition: color .15s; }
.card-title a:hover { color: var(--signal2); }
.card-excerpt {
  font-size: .78rem; color: var(--ink3); line-height: 1.6;
  flex: 1; margin-bottom: .8rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-meta {
  display: flex; align-items: center; gap: .3rem;
  font-family: var(--mono); font-size: .58rem; color: var(--ink4);
  border-top: 1px solid var(--rule); padding-top: .6rem; margin-top: auto;
  flex-wrap: wrap;
}
.card-meta-sep { color: var(--rule2); }
.empty-msg { grid-column: 1/-1; padding: 3rem; text-align: center; font-family: var(--mono); font-size: .75rem; color: var(--ink4); }

/* ── FEATURE PAIR ── */
.feature-pair { border-top: 1.5px solid var(--black); border-bottom: 1.5px solid var(--black); background: var(--white); }
.feature-pair-inner {
  max-width: var(--max); margin: auto;
  padding: 2rem var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.feature-col { padding: 0 2rem 0 0; border-right: 1px solid var(--rule); }
.feature-col:last-child { padding: 0 0 0 2rem; border-right: none; }
.feature-lead { cursor: pointer; }
.feature-lead-img {
  display: block; overflow: hidden; background: var(--bg3);
  aspect-ratio: 16/9; margin-bottom: 1rem; border: 1px solid var(--rule);
}
.feature-lead-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.feature-lead:hover .feature-lead-img img { transform: scale(1.02); }
.feature-lead h3 {
  font-family: var(--body); font-size: 1.05rem; font-weight: 700;
  line-height: 1.3; color: var(--black); margin: .4rem 0 .5rem;
  transition: color .15s;
}
.feature-lead h3 a { color: inherit; }
.feature-lead:hover h3 { color: var(--signal2); }
.feature-lead p { font-size: .82rem; color: var(--ink3); line-height: 1.6; margin-bottom: .6rem; }
.list-stack { margin-top: 1rem; border-top: 1px solid var(--rule); }
.list-item {
  display: flex; align-items: center; gap: .8rem;
  padding: .7rem 0; border-bottom: 1px solid var(--rule);
  cursor: pointer; transition: background .15s;
}
.list-item:hover { background: var(--bg2); padding-left: .4rem; margin: 0 -.4rem; }
.list-item-body { flex: 1; min-width: 0; }
.list-item-body h4 {
  font-size: .84rem; font-weight: 600; line-height: 1.3; color: var(--black);
  margin-bottom: .15rem; transition: color .15s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.list-item:hover h4 { color: var(--signal2); }
.list-meta { font-family: var(--mono); font-size: .56rem; color: var(--ink4); }
.list-item img { width: 60px; height: 60px; object-fit: cover; flex-shrink: 0; border: 1px solid var(--rule); }

/* ── AD SLOT — only shows when admin adds content ── */
.ad-slot {
  display: none; /* Hidden by default — only shows if admin pastes ad code */
  padding: 1rem; background: var(--bg2);
  border: 1px dashed var(--rule2);
  text-align: center; margin: 1.5rem auto;
  max-width: var(--max);
}
.ad-slot:not(:empty) { display: block; } /* Auto-shows when content added */
.ad-slot--sidebar { min-height: 0; margin-bottom: 1.5rem; }
.ad-label { font-family: var(--mono); font-size: .5rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink4); display: block; margin-bottom: .4rem; }

/* ── PODCAST SECTION ── */
.podcast-section { border-top: 1.5px solid var(--black); }
.pod-grid {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1.5px solid var(--black); border-top: none;
}
.pod-grid--archive { grid-template-columns: repeat(3, 1fr); border: none; gap: 1.5rem; }
.pod-card {
  background: var(--white); padding: 1.4rem;
  display: flex; flex-direction: column;
  cursor: pointer; transition: background .15s;
  border-right: 1px solid var(--rule);
  position: relative;
}
.pod-card:last-child { border-right: none; }
.pod-card:hover { background: var(--bg2); }
.pod-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--pod); transform: scaleX(0);
  transform-origin: left; transition: transform .25s;
}
.pod-card:hover::after { transform: scaleX(1); }
.pod-num { font-family: var(--mono); font-size: 2.5rem; font-weight: 700; line-height: 1; color: var(--bg3); margin-bottom: .4rem; letter-spacing: -.02em; transition: color .15s; }
.pod-card:hover .pod-num { color: var(--bg4); }
.pod-ep-tag { font-family: var(--mono); font-size: .55rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--pod); margin-bottom: .5rem; display: flex; align-items: center; gap: .4rem; }
.badge-new { background: var(--pod); color: white; font-size: .48rem; font-weight: 700; padding: .1rem .35rem; letter-spacing: .1em; }
.pod-card h3 { font-family: var(--body); font-size: .92rem; font-weight: 700; line-height: 1.35; color: var(--black); margin-bottom: .5rem; }
.pod-card h3 a { color: inherit; transition: color .15s; }
.pod-card h3 a:hover { color: var(--pod); }
.pod-card p { font-size: .76rem; color: var(--ink3); line-height: 1.6; flex: 1; margin-bottom: .8rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pod-guest { font-family: var(--mono); font-size: .56rem; color: var(--ink4); margin-bottom: .7rem; display: flex; align-items: center; gap: .3rem; }
.pod-wave { display: flex; align-items: flex-end; gap: 2px; height: 20px; margin-bottom: .7rem; opacity: .2; }
.pod-wave span { flex: 1; background: var(--pod); border-radius: 1px; }
.pod-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--rule); padding-top: .6rem; }
.pod-date { font-family: var(--mono); font-size: .58rem; color: var(--ink4); }
.pod-play { width: 32px; height: 32px; border: 1.5px solid var(--pod); background: transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .15s; padding-left: 2px; }
.pod-play:hover { background: var(--pod); }
.pod-play:hover path { fill: white; }
.pod-play path { fill: var(--pod); transition: fill .15s; }
.pod-platforms { max-width: var(--max); margin: 0 auto; padding: .9rem var(--pad); display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; background: var(--bg2); border: 1.5px solid var(--black); border-top: none; }
.plat-label { font-family: var(--mono); font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink4); }
.plat-btn { font-family: var(--mono); font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink3); border: 1.5px solid var(--rule2); padding: .28rem .75rem; transition: border-color .15s, color .15s; }
.plat-btn:hover { border-color: var(--pod); color: var(--pod); }

/* ── NEWSLETTER ── */
.nl-section {
  border-top: 2px solid var(--black);
  background: var(--black);
}
.nl-inner {
  max-width: var(--max); margin: auto;
  padding: 4rem var(--pad);
  display: grid; grid-template-columns: 1fr 400px;
  gap: 5rem; position: relative; overflow: hidden;
}
.nl-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--signal);
}
.nl-bg-word {
  position: absolute; right: -1rem; top: 50%; transform: translateY(-50%);
  font-family: var(--head); font-size: 13rem; font-weight: 900;
  color: rgba(255,255,255,.03); line-height: 1;
  pointer-events: none; white-space: nowrap; letter-spacing: -.05em;
}
.nl-text { position: relative; z-index: 1; }
.nl-eyebrow { font-family: var(--mono); font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--signal); margin-bottom: .8rem; display: flex; align-items: center; gap: .6rem; }
.nl-eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--signal); }
.nl-text h2 { font-family: var(--head); font-size: 2.8rem; font-weight: 900; letter-spacing: -.02em; line-height: 1.08; color: white; margin-bottom: .8rem; }
.nl-text p { font-size: .92rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 400px; margin-bottom: 1.2rem; }
.nl-bullets { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.nl-bullets li { font-size: .84rem; color: rgba(255,255,255,.45); font-family: var(--mono); }
.nl-form-wrap { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; }
.nl-input { width: 100%; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.15); padding: .85rem 1rem; font-family: var(--body); font-size: .88rem; color: white; outline: none; transition: border-color .15s; margin-bottom: .75rem; }
.nl-input::placeholder { color: rgba(255,255,255,.25); }
.nl-input:focus { border-color: var(--signal); }
.nl-btn { width: 100%; background: var(--signal); color: var(--black); border: none; padding: .88rem; font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: background .15s; margin-bottom: .7rem; }
.nl-btn:hover { background: #00dba5; }
.nl-note { font-family: var(--mono); font-size: .56rem; color: rgba(255,255,255,.25); text-align: center; margin-bottom: 1rem; }
.nl-topics { display: flex; flex-wrap: wrap; gap: .4rem; }
.nl-topic { font-family: var(--mono); font-size: .54rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .18rem .55rem; border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.3); }
.nl-topic.c-ai    { color: var(--ai);     border-color: rgba(108,92,231,.4); }
.nl-topic.c-crypto{ color: var(--crypto); border-color: rgba(243,156,18,.4); }
.nl-topic.c-sec   { color: var(--sec);    border-color: rgba(231,76,60,.4); }
.nl-topic.c-code  { color: var(--code);   border-color: rgba(9,132,227,.4); }
.nl-topic.c-pod   { color: var(--pod);    border-color: rgba(0,184,148,.4); }
.nl-topic.c-start { color: var(--start);  border-color: rgba(232,67,147,.4); }

/* ── READING PROGRESS ── */
#reading-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: var(--signal); z-index: 9999; transition: width .1s linear; pointer-events: none; }

/* ── POST PAGE ── */
.post-wrap { background: var(--white); }
.post-header { border-bottom: 1.5px solid var(--black); }
.post-header-inner { max-width: 780px; margin: 0 auto; padding: 3rem var(--pad) 2rem; }
.post-cat {
  display: inline-block; font-family: var(--mono); font-size: .58rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .2rem .65rem; border: 1.5px solid; margin-bottom: 1.1rem;
}
.post-cat--ai       { color: var(--ai);     border-color: var(--ai); }
.post-cat--crypto   { color: var(--crypto); border-color: var(--crypto); }
.post-cat--security { color: var(--sec);    border-color: var(--sec); }
.post-cat--code     { color: var(--code);   border-color: var(--code); }
.post-cat--podcast  { color: var(--pod);    border-color: var(--pod); }
.post-cat--startups { color: var(--start);  border-color: var(--start); }
.post-title { font-family: var(--head); font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; line-height: 1.08; color: var(--black); margin-bottom: .9rem; letter-spacing: -.02em; }
.post-deck { font-size: 1.1rem; color: var(--ink3); line-height: 1.7; margin-bottom: 1.4rem; font-style: italic; }
.post-byline { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--rule); }
.post-author { display: flex; align-items: center; gap: .7rem; }
.author-ava { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--rule2); }
.author-ava--init { width: 36px; height: 36px; border-radius: 50%; background: var(--bg3); border: 1.5px solid var(--rule2); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: .58rem; font-weight: 700; color: var(--ink3); text-transform: uppercase; overflow: hidden; white-space: nowrap; }
.author-name { font-family: var(--body); font-weight: 700; font-size: .9rem; display: block; color: var(--black); }
.post-byline-meta { font-family: var(--mono); font-size: .6rem; color: var(--ink4); margin-top: .1rem; }
.post-share { display: flex; gap: .4rem; }
.share-x,.share-li,.share-copy { font-family: var(--mono); font-size: .65rem; font-weight: 700; width: 34px; height: 34px; border: 1.5px solid var(--rule2); background: transparent; color: var(--ink3); display: flex; align-items: center; justify-content: center; transition: all .15s; cursor: pointer; }
.share-x:hover { border-color: var(--black); background: var(--black); color: white; }
.share-li:hover { border-color: #0077b5; background: #0077b5; color: white; }
.share-copy:hover { border-color: var(--signal); color: var(--signal); }
.post-hero-img { max-width: 780px; margin: 0 auto; padding: 2rem var(--pad) 0; }
.post-hero-img img { width: 100%; max-height: 480px; object-fit: cover; border: 1px solid var(--rule); }
.img-cap { font-family: var(--mono); font-size: .62rem; color: var(--ink4); padding: .4rem 0; }
.post-body { max-width: var(--max); margin: 0 auto; padding: 3rem var(--pad); background: var(--white); }
.post-content { max-width: 680px; margin: 0 auto; }

/* Article typography */
.gh-content h2 { font-family: var(--head); font-size: 1.65rem; font-weight: 900; color: var(--black); margin: 2.5rem 0 1rem; letter-spacing: -.01em; padding-bottom: .5rem; border-bottom: 2px solid var(--black); }
.gh-content h3 { font-family: var(--body); font-size: 1.15rem; font-weight: 700; color: var(--black); margin: 2rem 0 .7rem; }
.gh-content h4 { font-family: var(--body); font-size: 1rem; font-weight: 700; color: var(--black); margin: 1.5rem 0 .5rem; }
.gh-content p { font-family: var(--body); font-size: 1.05rem; color: var(--ink2); line-height: 1.85; margin-bottom: 1.4rem; background: none!important; border: none!important; padding: 0!important; }
.gh-content p strong { font-weight: 700; }
.gh-content a { color: var(--signal2); text-decoration: underline; text-underline-offset: 3px; }
.gh-content ul, .gh-content ol { margin: 1rem 0 1.4rem 1.4rem; }
.gh-content li { font-size: 1.05rem; color: var(--ink2); line-height: 1.8; margin-bottom: .4rem; }
.gh-content blockquote { border-left: 4px solid var(--signal); padding: .8rem 0 .8rem 1.5rem; margin: 2rem 0; background: var(--signal-bg); }
.gh-content blockquote p { color: var(--black); font-size: 1.1rem; font-style: italic; font-family: var(--head); margin: 0; }
.gh-content code { font-family: var(--mono); background: var(--bg2); border: 1px solid var(--rule); padding: .15rem .4rem; font-size: .86em; color: var(--code); }
.gh-content pre { background: var(--black); border: 1.5px solid var(--black); padding: 1.4rem; overflow-x: auto; margin: 1.5rem 0; }
.gh-content pre code { background: none; border: none; padding: 0; color: #00ff9f; font-size: .84rem; line-height: 1.75; }
.gh-content img { width: 100%; margin: 1.5rem 0; border: 1px solid var(--rule); }
.gh-content hr { border: none; border-top: 2px solid var(--black); margin: 2.5rem 0; }
.gh-content figure { margin: 1.5rem 0; }
.gh-content figcaption { font-family: var(--mono); font-size: .65rem; color: var(--ink4); margin-top: .4rem; }

/* Koenig cards — REQUIRED */
.gh-content .kg-width-wide { margin-left: -3rem; margin-right: -3rem; max-width: none; }
.gh-content .kg-width-full { margin-left: calc(-1 * var(--pad) - 2rem); margin-right: calc(-1 * var(--pad) - 2rem); max-width: none; }
.kg-image-card img { width: 100%; height: auto; display: block; }
.kg-image-card figcaption { font-family: var(--mono); font-size: .65rem; color: var(--ink4); text-align: center; margin-top: .4rem; }
.kg-gallery-container { display: flex; flex-direction: column; gap: .4rem; }
.kg-gallery-row { display: flex; gap: .4rem; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; }
.kg-bookmark-card { background: var(--bg2); border: 1.5px solid var(--black); }
.kg-bookmark-container { display: flex; text-decoration: none; color: inherit; }
.kg-bookmark-content { padding: 1.1rem; flex: 1; }
.kg-bookmark-title { font-weight: 700; font-size: .93rem; color: var(--black); margin-bottom: .25rem; }
.kg-bookmark-description { font-size: .8rem; color: var(--ink3); line-height: 1.5; margin-bottom: .5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.kg-bookmark-metadata { display: flex; align-items: center; gap: .5rem; font-family: var(--mono); font-size: .62rem; color: var(--ink4); }
.kg-bookmark-thumbnail { width: 130px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.kg-callout-card { display: flex; gap: 1rem; padding: 1.2rem 1.4rem; background: var(--signal-bg); border: 1.5px solid var(--signal-border); border-left: 4px solid var(--signal); }
.kg-callout-emoji { font-size: 1.4rem; line-height: 1.4; flex-shrink: 0; }
.kg-callout-text { font-size: 1rem; color: var(--ink2); line-height: 1.7; }
.kg-toggle-card { border: 1.5px solid var(--rule2); }
.kg-toggle-heading { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.2rem; cursor: pointer; }
.kg-toggle-heading-text { font-weight: 700; color: var(--black); }
.kg-toggle-content { padding: 0 1.2rem 1rem; font-size: .9rem; color: var(--ink3); line-height: 1.7; }
.kg-video-card video { width: 100%; display: block; }
.kg-audio-card { background: var(--bg2); border: 1.5px solid var(--rule2); padding: 1.2rem; }
.kg-audio-player-container audio { width: 100%; }
.kg-file-card { background: var(--bg2); border: 1.5px solid var(--rule2); }
.kg-file-card-container { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.2rem; text-decoration: none; color: inherit; }
.kg-file-card-title { font-weight: 700; color: var(--black); }
.kg-file-card-metadata { font-family: var(--mono); font-size: .62rem; color: var(--ink4); }
.kg-button-card { text-align: center; margin: 1.5rem 0; }
.kg-btn { display: inline-block; padding: .7rem 1.6rem; background: var(--black); color: white; font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: background .15s; }
.kg-btn:hover { background: var(--signal); }
.kg-header-card { background: var(--black); padding: 4rem 2rem; text-align: center; }
.kg-header-card h2 { font-family: var(--head); font-size: 3rem; color: white; letter-spacing: -.02em; margin-bottom: .8rem; }
.kg-header-card p { font-size: 1rem; color: rgba(255,255,255,.55); max-width: 520px; margin: 0 auto 1.5rem; line-height: 1.7; }
.kg-divider { border: none; border-top: 2px solid var(--black); margin: 2.5rem 0; }
.kg-embed-card { margin: 1.5rem 0; }
.kg-embed-card iframe { max-width: 100%; }

/* Post footer */
.post-foot { max-width: 780px; margin: 0 auto; padding: 2rem var(--pad); border-top: 2px solid var(--black); }
.post-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 2rem; }
.post-tag-pill { font-family: var(--mono); font-size: .58rem; font-weight: 700; letter-spacing: .1em; color: var(--ink3); border: 1.5px solid var(--rule2); padding: .22rem .65rem; transition: all .15s; }
.post-tag-pill:hover { border-color: var(--black); background: var(--black); color: white; }
.author-box { background: var(--bg2); border: 1.5px solid var(--black); }
.author-box-inner { display: flex; gap: 1rem; padding: 1.4rem; }
.author-box-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--black); }
.author-box-text h4 { font-family: var(--body); font-size: .92rem; font-weight: 700; margin-bottom: .35rem; }
.author-box-text h4 a { color: var(--black); transition: color .15s; }
.author-box-text h4 a:hover { color: var(--signal2); }
.author-box-text p { font-size: .82rem; color: var(--ink3); line-height: 1.65; }
.related-section { border-top: 2px solid var(--black); background: var(--bg2); }

/* ── ARCHIVE ── */
.archive-wrap { max-width: var(--max); margin: 0 auto; }
.archive-header { padding: 3rem var(--pad); border-bottom: 2px solid var(--black); background: var(--white); }
.archive-header-inner { max-width: 640px; }
.archive-badge { display: inline-block; font-family: var(--mono); font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: .22rem .7rem; border: 1.5px solid; margin-bottom: 1rem; }
.archive-badge--ai       { color: var(--ai);     border-color: var(--ai); }
.archive-badge--crypto   { color: var(--crypto); border-color: var(--crypto); }
.archive-badge--security { color: var(--sec);    border-color: var(--sec); }
.archive-badge--code     { color: var(--code);   border-color: var(--code); }
.archive-badge--podcast  { color: var(--pod);    border-color: var(--pod); }
.archive-badge--startups { color: var(--start);  border-color: var(--start); }
.archive-header h1 { font-family: var(--head); font-size: 3rem; font-weight: 900; color: var(--black); margin-bottom: .5rem; letter-spacing: -.02em; }
.archive-desc { font-size: .95rem; color: var(--ink3); line-height: 1.65; margin-bottom: .8rem; }
.archive-count { font-family: var(--mono); font-size: .62rem; color: var(--ink4); }
.author-header { display: flex; align-items: flex-start; gap: 1.5rem; padding: 3rem var(--pad); border-bottom: 2px solid var(--black); }
.author-hdr-img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--black); }
.author-header h1 { font-family: var(--head); font-size: 2.5rem; font-weight: 900; color: var(--black); margin-bottom: .5rem; letter-spacing: -.02em; }
.author-hdr-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-family: var(--mono); font-size: .62rem; color: var(--ink4); margin-top: .5rem; }
.author-hdr-meta a { color: var(--signal2); }

/* ── PODCAST ARCHIVE ── */
.pod-archive-platforms { max-width: var(--max); margin: 0 auto; padding: 1.2rem var(--pad); display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; border-bottom: 1px solid var(--rule); }
.plat-btn-light { font-family: var(--mono); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink3); border: 1.5px solid var(--rule2); padding: .3rem .8rem; transition: all .15s; }
.plat-btn-light:hover { border-color: var(--pod); color: var(--pod); }
.pod-archive-grid { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad) 3rem; display: flex; flex-direction: column; gap: 0; }
.pod-archive-card { display: flex; align-items: center; gap: 1.2rem; padding: 1.2rem 0; border-bottom: 1px solid var(--rule); text-decoration: none; transition: background .15s; cursor: pointer; }
.pod-archive-card:hover { background: var(--bg2); padding-left: .8rem; padding-right: .8rem; margin: 0 -.8rem; }
.pod-archive-img { width: 68px; height: 68px; flex-shrink: 0; overflow: hidden; border: 1.5px solid var(--rule2); background: var(--bg3); }
.pod-archive-img img { width: 100%; height: 100%; object-fit: cover; }
.pod-archive-img--empty { display: flex; align-items: center; justify-content: center; color: var(--ink4); }
.pod-archive-body { flex: 1; min-width: 0; }
.pod-archive-num { font-family: var(--mono); font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--pod); margin-bottom: .25rem; }
.pod-archive-body h3 { font-family: var(--body); font-size: .97rem; font-weight: 700; line-height: 1.35; color: var(--black); margin-bottom: .3rem; transition: color .15s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pod-archive-card:hover h3 { color: var(--signal2); }
.pod-archive-body p { font-size: .8rem; color: var(--ink3); line-height: 1.5; margin-bottom: .35rem; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.pod-archive-meta { font-family: var(--mono); font-size: .6rem; color: var(--ink4); display: flex; align-items: center; gap: .35rem; }
.pod-archive-play { width: 40px; height: 40px; background: var(--pod); color: white; display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding-left: 3px; transition: transform .15s, background .15s; }
.pod-archive-card:hover .pod-archive-play { transform: scale(1.08); background: var(--signal); }

/* ── PAGINATION ── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 1.5rem; padding: 2.5rem var(--pad); background: var(--bg2); border-top: 1.5px solid var(--black); }
.page-btn { font-family: var(--mono); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink3); border: 1.5px solid var(--black); padding: .5rem 1.2rem; transition: all .15s; }
.page-btn:hover { background: var(--black); color: white; }
.page-info { font-family: var(--mono); font-size: .65rem; color: var(--ink4); }

/* ── FOOTER ── */
.site-footer { background: var(--black); border-top: 2px solid var(--signal); padding: 4rem var(--pad) 2rem; }
.footer-inner { max-width: var(--max); margin: auto; }
.footer-top { display: grid; grid-template-columns: 260px 1fr; gap: 4rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { }
.footer-logo { margin-bottom: 1rem; display: inline-flex; }
.footer-logo .logo-word { color: white; }
.footer-tagline { font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.65; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: .5rem; }
.social-btn { font-family: var(--mono); font-size: .6rem; font-weight: 700; letter-spacing: .1em; color: rgba(255,255,255,.4); border: 1.5px solid rgba(255,255,255,.12); padding: .28rem .65rem; transition: all .15s; }
.social-btn:hover { border-color: var(--signal); color: var(--signal); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-col h4 { font-family: var(--mono); font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color .15s; }
.footer-col a:hover { color: white; }
.footer-nl-text { font-size: .78rem; color: rgba(255,255,255,.35); line-height: 1.6; margin-bottom: .7rem; }
.footer-nl-form { display: flex; }
.footer-nl-form input { flex: 1; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12); border-right: none; padding: .6rem .8rem; font-family: var(--body); font-size: .76rem; color: white; outline: none; transition: border-color .15s; min-width: 0; }
.footer-nl-form input::placeholder { color: rgba(255,255,255,.2); }
.footer-nl-form input:focus { border-color: var(--signal); }
.footer-nl-form button { background: var(--signal); color: var(--black); border: none; padding: .6rem .9rem; font-family: var(--mono); font-size: .65rem; font-weight: 700; cursor: pointer; letter-spacing: .1em; text-transform: uppercase; transition: background .15s; }
.footer-nl-form button:hover { background: #00dba5; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-family: var(--mono); font-size: .58rem; color: rgba(255,255,255,.2); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-family: var(--mono); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.2); transition: color .15s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ── 404 ── */
.error-wrap { max-width: 540px; margin: 8rem auto; padding: 0 var(--pad); text-align: center; }
.error-num { font-family: var(--head); font-size: 9rem; font-weight: 900; line-height: 1; color: var(--bg3); margin-bottom: -2rem; letter-spacing: -.05em; }
.error-tag { font-family: var(--mono); font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--sec); margin-bottom: 1.2rem; }
.error-title { font-family: var(--head); font-size: 2.5rem; font-weight: 900; color: var(--black); margin-bottom: 1rem; letter-spacing: -.02em; }
.error-msg { font-size: .95rem; color: var(--ink3); line-height: 1.7; margin-bottom: 2rem; }
.error-btn { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--mono); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: white; background: var(--black); padding: .7rem 1.5rem; border: 2px solid var(--black); transition: all .15s; }
.error-btn:hover { background: var(--signal); border-color: var(--signal); }

/* ── RESPONSIVE ── */
@media(max-width:1040px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-main { border-right: none; border-bottom: 2px solid var(--black); }
  .hero-side { border-top: none; }
  .section-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .feature-pair-inner { grid-template-columns: 1fr; }
  .feature-col { padding: 0 0 2rem 0; border-right: none; border-bottom: 1px solid var(--rule); }
  .feature-col:last-child { padding: 2rem 0 0 0; border-bottom: none; }
  .nl-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .nl-bg-word { display: none; }
  .post-body { padding: 2.5rem var(--pad); }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .pod-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:720px) {
  .section-grid--3, .section-grid--4 { grid-template-columns: 1fr 1fr; }
  .pod-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-actions .btn-icon { display: none; }
  .nav-hamburger { display: flex; }
  .hero-main h1 { font-size: 1.8rem; }
  .pod-archive-grid { padding: 0 var(--pad) 2rem; }
}
@media(max-width:480px) {
  .section-grid--3, .section-grid--4 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .trending-strip { display: none; }
  .post-title { font-size: 1.75rem; }
}

/* ── GHOST NUCLEAR CONTENT RESET ── */
.gh-content p,
.gh-content li,
.gh-content td {
  font-family: var(--body)!important;
  background: transparent!important;
  background-color: transparent!important;
  border: none!important;
  padding: 0!important;
  font-size: 1.05rem;
  color: var(--ink2);
  line-height: 1.85;
}
.gh-content p code,
.gh-content li code {
  font-family: var(--mono)!important;
  background: var(--bg2)!important;
  border: 1px solid var(--rule)!important;
  padding: .15rem .4rem!important;
  font-size: .86em!important;
  color: var(--code)!important;
}
