/* ============================================================
 * FROM THE BOOTS UP — Theme v3
 * ============================================================
 * Rebuilt 2026-05-06. Monocle discipline × Vice energy.
 * Playfair Display for editorial headlines — the Monocle quality.
 * IBM Plex Sans for UI — the Vice directness.
 * IBM Plex Serif for body reading — credible, comfortable.
 * IBM Plex Mono for metadata — cold, factual, journalistic.
 *
 * All values from token.css. No hardcoded colours or sizes.
 * ============================================================ */

@import url('token.css');

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--f-body);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.wrap {
  max-width: var(--w-full);
  margin: 0 auto;
  padding-left: clamp(var(--sp-4), 4vw, var(--sp-10));
  padding-right: clamp(var(--sp-4), 4vw, var(--sp-10));
}

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  background: var(--c-black);
  border-bottom: 4px solid var(--c-signal);
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
}
.header-inner {
  max-width: var(--w-full);
  margin: 0 auto;
  padding: 0 clamp(var(--sp-4), 4vw, var(--sp-10));
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}
.site-logo {
  font-family: var(--f-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--c-white);
}
.site-logo abbr {
  text-decoration: none;
  color: var(--c-signal);
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 0;
}
.nav-list a {
  display: block;
  padding: 0 var(--sp-3);
  height: 56px;
  line-height: 56px;
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-bottom: 4px solid transparent;
  margin-bottom: -4px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--c-white);
  border-bottom-color: var(--c-signal);
}
.header-subscribe {
  display: inline-block;
  background: var(--c-signal);
  color: var(--c-white);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-3);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.header-subscribe:hover { background: var(--c-signal-dark); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-1);
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--c-white); }

/* ── SECTION HEAD ───────────────────────────────────────────── */
.section-head {
  border-top: 4px solid var(--c-ink);
  padding-top: var(--sp-2);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.section-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--c-paper);
  background: var(--c-ink);
  padding: 3px var(--sp-2);
  display: inline-block;
}
.section-more {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-mid);
  transition: color var(--t-fast);
}
.section-more:hover { color: var(--c-signal); }

/* ── TAG / LABEL ────────────────────────────────────────────── */
.tag {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--c-signal);
}
.tag:hover { text-decoration: underline; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero { border-bottom: 1px solid var(--c-rule); }
.hero-image-wrap {
  width: 100%;
  aspect-ratio: 42 / 9;
  overflow: hidden;
  background: var(--c-rule);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-text-wrap {
  max-width: var(--w-full);
  margin: 0 auto;
  padding: var(--sp-8) clamp(var(--sp-4), 4vw, var(--sp-10)) var(--sp-12);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-10);
  align-items: start;
  border-bottom: 1px solid var(--c-rule);
}
.hero-text-wrap.no-image {
  grid-template-columns: 1fr;
  max-width: 860px;
}
.hero-meta-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-top: var(--sp-1);
}
.hero-tag { display: block; margin-bottom: var(--sp-1); }
.hero-headline {
  font-family: var(--f-headline);
  font-size: clamp(var(--fs-xxl), 7vw, 90px);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--c-ink);
}
.hero-headline a:hover { color: var(--c-signal); }
.hero-excerpt {
  font-family: var(--f-serif, 'IBM Plex Serif', Georgia, serif);
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  color: var(--c-mid);
  margin-top: var(--sp-3);
}
.hero-byline {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-mid);
  margin-top: var(--sp-4);
}
.hero-byline .sep { color: var(--c-rule); }
.hero-sidebar {
  border-left: 2px solid var(--c-ink);
  padding-left: var(--sp-10);
}
.hero-sidebar-item {
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--c-rule);
}
.hero-sidebar-item:first-child { padding-top: 0; }
.hero-sidebar-item:last-child { border-bottom: none; }
.sidebar-tag { display: block; margin-bottom: var(--sp-1); }
.sidebar-headline {
  font-family: var(--f-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--c-ink);
}
.sidebar-headline:hover { color: var(--c-signal); }
.sidebar-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--c-mid);
  margin-top: var(--sp-2);
}

/* ── MAIN CONTENT ────────────────────────────────────────────── */
.site-content {
  max-width: var(--w-full);
  margin: 0 auto;
  padding: var(--sp-8) clamp(var(--sp-4), 4vw, var(--sp-10)) var(--sp-16);
}

/* ── POST GRID ───────────────────────────────────────────────── */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--c-ink);
  border-top: 1px solid var(--c-ink);
  margin-bottom: var(--sp-8);
}
.post-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.post-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ── POST CARD ───────────────────────────────────────────────── */
.post-card {
  background: var(--c-paper);
  padding: var(--sp-4) var(--sp-5);
  border-right: 1px solid var(--c-ink);
  border-bottom: 1px solid var(--c-ink);
}
.card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--c-rule);
  margin-bottom: var(--sp-3);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
a:hover .card-image img { transform: scale(1.02); }
.card-tag { margin-bottom: var(--sp-1); }
.card-headline {
  font-family: var(--f-headline);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
}
.card-headline a { display: block; }
.card-headline a:hover { color: var(--c-signal); }
.card-excerpt {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
  color: var(--c-mid);
  margin-top: var(--sp-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--c-mid);
  margin-top: var(--sp-2);
}
.post-card.horizontal {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-4);
  border-bottom: 1px solid var(--c-rule);
  background: none;
}
.post-card.horizontal:last-child { border-bottom: none; }
.post-card.horizontal .card-image {
  width: 88px;
  height: 72px;
  flex-shrink: 0;
  aspect-ratio: unset;
  margin-bottom: 0;
}
.post-card.horizontal .card-headline {
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
}

/* ── FEATURED STRIP ──────────────────────────────────────────── */
.featured-strip {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  border: 1px solid var(--c-ink);
  margin-bottom: var(--sp-8);
}
.featured-main {
  background: var(--c-paper);
  padding: 0 0 var(--sp-5) 0;
  border-right: 1px solid var(--c-ink);
}
.featured-main .card-image { aspect-ratio: 3 / 2; margin-bottom: var(--sp-4); }
.featured-main .card-tag,
.featured-main .card-headline,
.featured-main .card-excerpt,
.featured-main .card-meta { padding: 0 var(--sp-6); }
.featured-main .card-headline {
  font-family: var(--f-headline);
  font-size: clamp(var(--fs-lg), 3vw, var(--fs-xxl));
  letter-spacing: var(--ls-tight);
}
.featured-sidebar { background: var(--c-paper); }

/* ── SUBSCRIBE BLOCK ─────────────────────────────────────────── */
.subscribe-block {
  background: var(--c-black);
  padding: var(--sp-16) clamp(var(--sp-4), 4vw, var(--sp-10));
}
.subscribe-block-inner { max-width: 520px; margin: 0 auto; }
.subscribe-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--c-signal);
  margin-bottom: var(--sp-4);
  display: block;
}
.subscribe-headline {
  font-family: var(--f-headline);
  font-size: clamp(var(--fs-xl), 4vw, var(--fs-xxxl));
  font-weight: var(--fw-black);
  color: var(--c-white);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--sp-3);
}
.subscribe-sub {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-8);
  line-height: var(--lh-normal);
}
.subscribe-form { display: flex; gap: 0; }
.subscribe-form input[type="email"] {
  flex: 1;
  background: var(--c-white);
  border: none;
  color: var(--c-black);
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--f-mono);
  font-size: var(--fs-sm);
  outline: none;
}
.subscribe-form input[type="email"]::placeholder { color: #aaa; }
.subscribe-form button {
  background: var(--c-signal);
  color: var(--c-white);
  border: none;
  padding: var(--sp-3) var(--sp-5);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-fast);
}
.subscribe-form button:hover { background: var(--c-signal-dark); }

/* ── ARTICLE PAGE ────────────────────────────────────────────── */
.article-wrap {
  max-width: var(--w-full);
  margin: 0 auto;
  padding: 0 clamp(var(--sp-4), 4vw, var(--sp-10)) var(--sp-24);
}
.article-header {
  max-width: var(--w-content);
  margin: 0 auto;
  padding: var(--sp-10) 0 var(--sp-8);
  border-bottom: 4px solid var(--c-ink);
}
.article-tag-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.article-date {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--c-mid);
}
.article-tag-row .sep { color: var(--c-rule); }
.article-title {
  font-family: var(--f-headline);
  font-size: clamp(var(--fs-xl), 6vw, 72px);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--sp-5);
}
.article-excerpt {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  color: var(--c-mid);
  margin-bottom: var(--sp-6);
}
.article-byline {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--c-mid);
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.article-byline .author-name {
  color: var(--c-ink);
  font-weight: var(--fw-semibold);
}
.article-hero-image {
  width: 100%;
  max-height: 560px;
  overflow: hidden;
  background: var(--c-rule);
}
.article-hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* Article body */
.article-body {
  max-width: var(--w-content);
  margin: var(--sp-10) auto 0;
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 20px;
  line-height: 1.75;
  color: var(--c-ink);
}
.article-body p { margin-bottom: 1.4em; }
.article-body h2 {
  font-family: var(--f-headline);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  margin: 2em 0 0.6em;
  letter-spacing: var(--ls-tight);
}
.article-body h3 {
  font-family: var(--f-body);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  margin: 1.8em 0 0.5em;
}
.article-body h4 {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  margin: 1.6em 0 0.5em;
  color: var(--c-mid);
}
.article-body a {
  color: var(--c-signal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-body a:hover { text-decoration: none; }
.article-body strong { font-weight: var(--fw-bold); }
.article-body em { font-style: italic; }
.article-body ul, .article-body ol { margin: 0 0 1.4em 1.5em; }
.article-body li { margin-bottom: 0.4em; }
.article-body blockquote {
  border-left: 4px solid var(--c-signal);
  margin: 2em 0;
  padding: 0 0 0 var(--sp-6);
  font-family: var(--f-headline);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--c-ink);
  font-style: italic;
}
.article-body hr {
  border: none;
  border-top: 1px solid var(--c-rule);
  margin: 2.5em 0;
}
.article-body img { width: 100%; height: auto; margin: 2em 0; }
.article-body figure { margin: 2em 0; }
.article-body figcaption {
  font-family: var(--f-mono);
  font-size: var(--fs-sm);
  color: var(--c-mid);
  margin-top: var(--sp-2);
}

/* Article footer */
.article-footer {
  max-width: var(--w-content);
  margin: var(--sp-12) auto 0;
  padding-top: var(--sp-5);
  border-top: 4px solid var(--c-ink);
}
.article-tags { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.article-tag-link {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border: 1px solid var(--c-ink);
  padding: 5px var(--sp-2);
  color: var(--c-ink);
  transition: background var(--t-fast), color var(--t-fast);
}
.article-tag-link:hover {
  background: var(--c-ink);
  color: var(--c-paper);
}

/* ── RELATED POSTS ───────────────────────────────────────────── */
.related-posts {
  max-width: var(--w-full);
  margin: 0 auto;
  padding: var(--sp-10) clamp(var(--sp-4), 4vw, var(--sp-10)) var(--sp-16);
  border-top: 1px solid var(--c-rule);
}

/* ── PAGINATION ──────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-10) clamp(var(--sp-4), 4vw, var(--sp-10));
  border-top: 1px solid var(--c-rule);
}
.pagination a, .pagination span {
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--c-mid);
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--c-rule);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.pagination a:hover { border-color: var(--c-ink); color: var(--c-ink); }
.pagination .page-number { border: none; padding: var(--sp-2) 0; }

/* ── ARCHIVE PAGE ────────────────────────────────────────────── */
.archive-header {
  padding: var(--sp-10) 0 var(--sp-8);
  border-bottom: 4px solid var(--c-ink);
  margin-bottom: var(--sp-8);
}
.archive-title {
  font-family: var(--f-headline);
  font-size: clamp(var(--fs-xl), 5vw, var(--fs-hero));
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--sp-2);
}
.archive-desc {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: var(--fs-base);
  color: var(--c-mid);
  max-width: 520px;
  line-height: var(--lh-normal);
}

/* ── 404 ─────────────────────────────────────────────────────── */
.error-page {
  max-width: var(--w-content);
  margin: var(--sp-24) auto;
  padding: 0 clamp(var(--sp-4), 4vw, var(--sp-10));
  text-align: center;
}
.error-code {
  font-family: var(--f-headline);
  font-size: 160px;
  font-weight: var(--fw-black);
  color: var(--c-rule);
  line-height: 1;
  margin-bottom: var(--sp-4);
  letter-spacing: var(--ls-tight);
}
.error-title {
  font-family: var(--f-body);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-3);
}
.error-desc {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: var(--fs-base);
  color: var(--c-mid);
  margin-bottom: var(--sp-8);
}
.btn-primary {
  display: inline-block;
  background: var(--c-ink);
  color: var(--c-paper);
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  padding: var(--sp-3) var(--sp-6);
  transition: background var(--t-fast);
}
.btn-primary:hover { background: var(--c-signal); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-black);
  padding: var(--sp-12) clamp(var(--sp-4), 4vw, var(--sp-10));
  border-top: 4px solid var(--c-signal);
}
.footer-inner {
  max-width: var(--w-full);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--sp-12);
  align-items: start;
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--sp-6);
}
.footer-logo {
  font-family: var(--f-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: var(--sp-2);
}
.footer-logo abbr { text-decoration: none; color: var(--c-signal); }
.footer-tagline {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  line-height: var(--lh-normal);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  align-items: flex-start;
}
.footer-nav a {
  font-family: var(--f-mono);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
}
.footer-nav a:hover { color: var(--c-white); }
.footer-copy {
  max-width: var(--w-full);
  margin: 0 auto;
  font-family: var(--f-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── KOENIG EDITOR CARDS ─────────────────────────────────────── */
.gh-content .kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: 2em calc(50% - 42.5vw);
}
.gh-content .kg-width-full {
  position: relative;
  width: 100vw;
  margin: 2em calc(50% - 50vw);
}
.gh-content .kg-image-card img { width: 100%; height: auto; }
.gh-content .kg-gallery-container { width: 100%; }
.gh-content .kg-gallery-row { display: flex; gap: 4px; margin-bottom: 4px; }
.gh-content .kg-gallery-image { flex: 1; overflow: hidden; }
.gh-content .kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; }
.gh-content .kg-bookmark-card { border: 1px solid var(--c-rule); }
.gh-content .kg-bookmark-container { display: flex; text-decoration: none; color: inherit; }
.gh-content .kg-bookmark-content { padding: var(--sp-4); flex: 1; }
.gh-content .kg-bookmark-title {
  font-family: var(--f-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-1);
}
.gh-content .kg-bookmark-description { font-size: var(--fs-sm); color: var(--c-mid); }
.gh-content .kg-bookmark-thumbnail { width: 160px; flex-shrink: 0; overflow: hidden; }
.gh-content .kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.gh-content .kg-callout-card {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--c-rule);
  border-left: 4px solid var(--c-signal);
  margin: 1.5em 0;
}
.gh-content .kg-callout-text { flex: 1; font-size: var(--fs-base); }
.gh-content .kg-toggle-card { border: 1px solid var(--c-rule); padding: var(--sp-4); margin: 1.5em 0; }
.gh-content .kg-toggle-heading { font-family: var(--f-body); font-weight: var(--fw-bold); cursor: pointer; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-text-wrap { grid-template-columns: 1fr; gap: 0; }
  .hero-image-wrap { aspect-ratio: 16 / 9; }
  .hero-sidebar {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--c-rule);
    padding-top: var(--sp-6);
    margin-top: var(--sp-6);
  }
  .featured-strip { grid-template-columns: 1fr; }
  .featured-main { padding: 0 0 var(--sp-6) 0; }
  .featured-sidebar {
    padding: 0;
    border-top: 1px solid var(--c-rule);
    padding-top: var(--sp-6);
  }
  .post-grid { grid-template-columns: 1fr; background: none; gap: 0; }
  .post-card { padding: var(--sp-4) 0; border-bottom: 1px solid var(--c-rule); }
  .nav-list { display: none; }
  .nav-list.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--c-black);
    padding: var(--sp-2) 0;
    z-index: var(--z-overlay);
  }
  .nav-list.open a {
    height: auto;
    line-height: 1;
    padding: var(--sp-3) var(--sp-5);
    border-bottom: none;
  }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: var(--sp-6); }
}

@media (max-width: 480px) {
  .header-subscribe { display: none; }
  .article-title { letter-spacing: -0.5px; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form button { width: 100%; }
}
