/* ── Discours — Brand system (Partnership 2026 huisstijl) ──────────── */
/* Brand palette:  Burgundy Deep + Rose accent + Paper/Cream + Ink     */
/* Fonts: Lato (primary) + Poppins Light Italic (leads, pullquotes)    */
/* Guide: /Users/robi2-test/Downloads/Discours - Brand Guide.md         */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Poppins:ital,wght@0,400;1,300&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --white: #ffffff;
  --gray-50: #f9f9f9;
  --gray-100: #f3f3f3;
  --gray-200: #e6e6e6;
  --gray-300: #d1d1d1;
  --gray-500: #6e6e6e;
  --gray-700: #3c3c3c;
  --gray-900: #0c0c0c;

  /* Brand palette (source of truth, mirror van mediakit-scoped vars) */
  --burgundy-deep: #2E0A11;
  --burgundy-mid: #5A1820;
  --burgundy-soft: #7A2430;
  --rose: #D94E6A;
  --rose-muted: #B13C56;
  --cream: #F5EFE6;
  --cream-warm: #EDE3D4;
  --ink: #1A0509;
  --paper: #FBF7F0;

  /* Semantic aliases (back-compat — oude code blijft werken) */
  --black: var(--ink);
  --bordeaux: var(--burgundy-deep);
  --bordeaux-dark: var(--burgundy-deep);
  --red: #cc0000;

  --font: 'Lato', 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-italic: 'Poppins', Georgia, serif;
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.5;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--bordeaux); }
img { max-width: 100%; height: auto; display: block; }

/* ── Topbar ──────────────────────────────────────────────────────── */
.topbar {
  background: var(--bordeaux);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topbar a { color: #fff; text-decoration: underline; font-weight: 600; }

/* ── Nav (CNN: logo left, links center, dark bg) ─────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  display: flex;
  align-items: center;
  height: 56px;
  gap: 32px;
  padding: 0 calc((100% - var(--max-w)) / 2 + 24px);
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav-logo-dot { color: var(--rose); }
.nav-logo-sub { display: none; }

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--gray-300); }

/* ── Hamburger button (hidden on desktop) ────────────────────────── */
.nav-hamburger {
  display: none;
  margin-left: auto;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav overlay (shown on mobile when open) ──────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--burgundy-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-nav.is-open { display: flex; opacity: 1; }
.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  color: var(--cream);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-nav-links a {
  color: var(--cream);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.mobile-nav-links a:hover { color: var(--rose); }
body.nav-open { overflow: hidden; }

/* ── Trending bar (CNN: topics pipe-separated) ───────────────────── */
.trending-bar {
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.trending-bar a {
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-900);
  padding: 0 12px;
  border-right: 1px solid var(--gray-300);
  line-height: 1;
}
.trending-bar a:last-child { border-right: none; }
.trending-bar a:hover { color: var(--bordeaux); }

/* ── CNN 3-Column Hero ───────────────────────────────────────────── */
.hero-3col {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 32px;
  border-bottom: 1px solid var(--gray-200);
}

/* Left column: topic-teaser links for the latest episode */
.hero-left {}
.hero-left-heading {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-900);
  border-left: 3px solid var(--bordeaux);
  padding-left: 10px;
  margin: 0 0 16px;
}
.hero-left-item {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}
.hero-left-item:last-child { border-bottom: none; }
.hero-left-item h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gray-900);
  margin: 4px 0 0;
}
.hero-left-item h3:hover { color: var(--bordeaux); }
.hero-left-item .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--bordeaux);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Center: main story with large image */
.hero-center {}
.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.hero-eyebrow-badge {
  display: inline-block;
  padding: 5px 10px;
  background: var(--bordeaux);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 3px;
}
.hero-eyebrow-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.intro-cadence { display: block; }
.hero-center-headline {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  text-align: left;
  margin-bottom: 16px;
  color: var(--gray-900);
}
.hero-center-headline a { color: var(--gray-900); }
.hero-center-headline a:hover { color: var(--bordeaux); }

.hero-center-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 16px;
}
.hero-center-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-center-img .overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

/* Hero topics list (TOC on homepage) */
.hero-topics {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 24px;
}
.hero-topics li {
  font-size: 13px;
  line-height: 1.35;
  padding: 2px 0;
}
.hero-topics li::before {
  content: "•";
  color: var(--bordeaux);
  font-weight: 700;
  margin-right: 6px;
}
.hero-topics a {
  color: var(--gray-700);
  font-weight: 500;
}
.hero-topics a:hover { color: var(--bordeaux); }

@media (max-width: 768px) {
  .hero-topics { grid-template-columns: 1fr; }
}

/* Korte beschrijving onder de thumbnail (SEO + high-level overzicht) */
.hero-short {
  margin: 14px 0 16px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-700, #444);
  font-style: italic;
  max-width: 640px;
}

/* Hero summary + tag pills onder de CTA knoppen */
.hero-summary {
  margin: 20px 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800, #2a2a2a);
  max-width: 640px;
}
.hero-tags {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hero-tags li {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bordeaux);
  background: rgba(83, 13, 39, 0.07);
  border: 1px solid rgba(83, 13, 39, 0.18);
  padding: 4px 10px;
  border-radius: 3px;
}

/* Related text links under main story (CNN style) */
.hero-center-links { padding-top: 8px; }
.hero-center-links a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-100);
}
.hero-center-links a:hover { color: var(--bordeaux); }
.hero-center-links .link-label {
  font-weight: 800;
  color: var(--bordeaux);
  margin-right: 4px;
}

/* Right column: CTA widgets */
.hero-right {
  border-left: 1px solid var(--gray-200);
  padding-left: 32px;
}

.hero-right-logo {
  display: block;
  margin-bottom: 20px;
}
.hero-right-logo img {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.hero-sidebar-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.hero-right-cta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.hero-right-bookcover {
  display: block;
  margin-bottom: 24px;
}
.hero-right-bookcover img {
  width: 100%;
  max-width: 180px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.hero-right-bookcover:hover img { box-shadow: 0 6px 24px rgba(0,0,0,0.18); }

.hero-right-ethos {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}
.hero-right-ethos h3 { font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.hero-right-ethos h3 a { color: var(--gray-900); }
.hero-right-ethos h3 a:hover { color: var(--bordeaux); }
.hero-right-ethos p { font-size: 12px; color: var(--gray-500); line-height: 1.5; margin-bottom: 4px; }
.hero-right-ethoslink { font-size: 12px; font-weight: 600; color: var(--bordeaux); }
.hero-right-ethoslink:hover { text-decoration: underline; }

.hero-right-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 4px;
}
.hero-right-quicklinks a {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  padding: 3px 10px 3px 0;
  border-right: 1px solid var(--gray-300);
  margin-right: 10px;
  line-height: 1;
}
.hero-right-quicklinks a:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-right-quicklinks a:hover { color: var(--bordeaux); }

/* ── Section header (CNN: bordeaux pipe + uppercase) ─────────────── */
.section { padding: 32px 24px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.section-header::before {
  content: none;
  width: 4px;
  height: 22px;
  background: var(--bordeaux);
  border-radius: 1px;
  flex-shrink: 0;
}
.section-header h2 {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-900);
}

/* ── Episode card grid (CNN: 3-col with image + headline) ────────── */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.episode-card { display: block; }
.episode-card:hover h3 { color: var(--bordeaux); }

.episode-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 10px;
}
.episode-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.episode-card:hover .episode-card-img img { transform: scale(1.03); }

.episode-card-number {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  background: var(--bordeaux);
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.03em;
}

.episode-card-body {}
.episode-card-name {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--gray-900);
}
.episode-card-role {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.episode-card-quote {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: var(--bordeaux);
  line-height: 1.4;
  margin-bottom: 6px;
}
.episode-card-meta {
  font-size: 12px;
  color: var(--gray-500);
  display: flex;
  gap: 12px;
}

/* ── Tags (CNN: simple, flat) ────────────────────────────────────── */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 6px 14px;
  background: var(--gray-100);
  border: none;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.15s;
}
.tag:hover { background: var(--bordeaux); color: #fff; }
.tag-sm { font-size: 12px; padding: 4px 10px; }

/* ── Clips grid ──────────────────────────────────────────────────── */
.clips-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.clip-card { display: block; }
.clip-card:hover p { color: var(--bordeaux); }
.clip-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 6px;
}
.clip-card-img img { width: 100%; height: 100%; object-fit: cover; }
.clip-card-duration {
  position: absolute;
  bottom: 6px;
  right: 6px;
  padding: 1px 6px;
  background: rgba(0,0,0,0.8);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}
.clip-card-title { font-size: 14px; font-weight: 600; line-height: 1.3; }

/* ── Book section (bordeaux full-width like CNN feature zone) ────── */
.section-book { background: var(--bordeaux); color: #fff; }
.book-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.book-text .section-header::before { background: #fff; }
.book-text .section-header h2 { color: rgba(255,255,255,0.7); }
.book-text p { color: rgba(255,255,255,0.85); margin-bottom: 16px; max-width: 480px; font-size: 15px; }
.book-subtitle { font-weight: 600; font-size: 20px; color: #fff !important; line-height: 1.3; }
.book-cover img { max-height: 300px; box-shadow: 0 12px 40px rgba(0,0,0,0.4); }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.15s;
}
.btn-primary { background: var(--bordeaux); color: #fff; border: none; }
.btn-primary:hover { background: var(--bordeaux-dark); color: #fff; }
.btn-outline { border: 1px solid var(--gray-300); color: var(--gray-700); background: transparent; }
.btn-outline:hover { border-color: var(--bordeaux); color: var(--bordeaux); }
.section-book .btn-primary { background: #fff; color: var(--bordeaux); }
.section-book .btn-primary:hover { background: var(--gray-100); color: var(--bordeaux); }

.hero-badge {
  display: inline-block;
  padding: 3px 11px;
  background: var(--rose-muted);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-left: 14px;
  margin-bottom: 8px;
  border-radius: 999px;
  vertical-align: middle;
}
.hero-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }

/* ── Episode Detail Page ─────────────────────────────────────────── */
.episode-page { padding-top: 0; }

.episode-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 48px 24px;
  min-height: 320px;
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: var(--bordeaux);
}
.episode-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bordeaux) 0%, rgba(83,13,39,0.85) 40%, rgba(83,13,39,0.4) 100%);
}
.episode-header-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  color: #fff;
  text-align: left;
}
.episode-header-content h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  margin: 6px 0 4px;
  line-height: 1.1;
  text-align: left;
}
.episode-header-role { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.4; }
.episode-header-meta { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 16px; line-height: 1.4; }
.back-link { color: var(--cream); font-size: 14px; margin-bottom: 12px; display: inline-block; line-height: 1.4; font-weight: 500; border-bottom: 1px solid transparent; padding-bottom: 1px; vertical-align: middle; }
.back-link:hover { color: #fff; border-bottom-color: var(--rose); }
.episode-header .btn-primary { background: #fff; color: var(--bordeaux); }
.episode-header .btn-outline { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.episode-header .btn-outline:hover { border-color: #fff; color: #fff; }

/* ── Episode 3-Column Body ────────────────────────────────────────── */
.ep-3col {
  display: grid;
  grid-template-columns: 240px 640px 260px;
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px;
  justify-content: center;
}
.ep-sidebar-left { position: sticky; top: 72px; align-self: start; }
.ep-sidebar-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
}
.ep-sidebar-cta { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.ep-sidebar-toc { border-top: 1px solid var(--gray-200); padding-top: 16px; }
.ep-sidebar-toc h3 { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bordeaux); margin-bottom: 10px; }
.ep-sidebar-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.ep-sidebar-toc li {
  font-size: 14px;
  line-height: 1.4;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-200);
}
.ep-sidebar-toc li:last-child { border-bottom: none; }
.ep-sidebar-toc li::before {
  content: "›";
  color: var(--bordeaux);
  font-weight: 700;
  margin-right: 6px;
}
.ep-sidebar-toc a { color: var(--gray-700); font-weight: 500; }
.ep-sidebar-toc a:hover { color: var(--bordeaux); }
.ep-article { min-width: 0; }
.ep-sidebar-right { position: sticky; top: 72px; align-self: start; }
.ep-sidebar-right h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; line-height: 1.3; }
.guest-role { font-size: 13px; color: var(--gray-500); margin-bottom: 8px; }
.guest-bio { font-size: 14px; color: var(--gray-700); line-height: 1.6; margin-bottom: 16px; }
.guest-tags { display: flex; flex-wrap: wrap; gap: 4px; }

/* ── Article Body ────────────────────────────────────────────────── */
/* ── Table of Contents ────────────────────────────────────────────── */
.toc {
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-left: 4px solid var(--bordeaux);
  border-radius: 0 4px 4px 0;
  max-width: 100%;
}
.toc-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bordeaux);
  margin-bottom: 12px;
}
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.toc-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
@media (max-width: 768px) {
  .toc-columns { grid-template-columns: 1fr; }
}
.toc-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;

}
.toc-list li .toc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--bordeaux);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 3px;
  flex-shrink: 0;
}
.toc-list a {
  color: var(--gray-700);
  font-weight: 500;
}
.toc-list a:hover {
  color: var(--bordeaux);
}

.episode-oneliner {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: var(--bordeaux);
  line-height: 1.5;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.article-body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-900);
}
.article-body h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 48px 0 16px;
  color: var(--gray-900);
  line-height: 1.3;
}
.article-body h2 a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #c00;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 10px;
  white-space: nowrap;
  vertical-align: middle;
  letter-spacing: 0.02em;
  position: relative;
  top: -2px;
}
.article-body h2 a:hover {
  background: #a00;
  color: #fff;
}
.article-body p { margin-bottom: 16px; }
.article-body blockquote {
  font-style: italic;
  color: var(--bordeaux);
  padding-left: 20px;
  border-left: 4px solid var(--bordeaux);
  margin: 24px 0;
  font-size: 18px;
}

/* ── Quotes Section ──────────────────────────────────────────────── */
.quotes-section {
  margin-top: 48px;
  padding-top: 0;
  border-top: 1px solid var(--gray-200);
}
.quotes-section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.quotes-section h2::before {
  content: '';
  width: 4px;
  height: 20px;
  background: var(--bordeaux);
}

.quotes-list { display: flex; flex-direction: column; gap: 12px; }

.quote-card {
  display: block;
  padding: 16px 20px;
  border-left: 4px solid var(--bordeaux);
  background: var(--gray-50);
  transition: background 0.15s;
  color: inherit;
}
.quote-card:hover { background: var(--gray-100); }

.quote-card blockquote p {
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
  color: var(--bordeaux);
  font-weight: 500;
}
.quote-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 12px;
  color: var(--gray-500);
}
.quote-timestamp { font-weight: 700; color: var(--bordeaux); }

/* ── CNN Feed Components ──────────────────────────────────────────── */

.feed-section { padding: 0; }
.feed-inner { max-width: var(--max-w); margin: 0 auto; padding: 32px 24px; }

/* Section header — CNN style: big, bold, no decoration */
.section-h {
  font-size: 28px;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 20px;
}

/* Labels */
.feed-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bordeaux);
  margin-bottom: 4px;
}
.feed-h2 { font-size: 32px; font-weight: 900; line-height: 1.15; margin-bottom: 4px; }
.feed-h2 a { color: var(--gray-900); }
.feed-h2 a:hover { color: var(--bordeaux); }
.feed-h3 { font-size: 20px; font-weight: 800; line-height: 1.2; margin-bottom: 4px; }
.feed-role { font-size: 14px; color: var(--gray-500); margin-bottom: 2px; }
.feed-date { font-size: 13px; color: var(--gray-500); margin-bottom: 12px; }
.feed-oneliner { font-size: 15px; line-height: 1.5; color: var(--gray-700); margin-bottom: 16px; font-style: italic; }
.feed-cta { display: flex; gap: 8px; flex-wrap: wrap; }
.feed-more { display: inline-block; margin-top: 16px; font-size: 15px; font-weight: 700; color: var(--bordeaux); }
.feed-more:hover { text-decoration: underline; }

/* ── Hero Duo (image + info side by side) ────────────────────────── */
.hero-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.hero-duo-img {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 2px;
}
.hero-duo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.hero-duo-img:hover img { transform: scale(1.02); }
.hero-duo-info { padding-top: 8px; }

/* ── Quote Grid 2-col (CNN text-link style) ──────────────────────── */
.quote-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.qg-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-900);
  transition: color 0.15s;
}
.qg-item:nth-child(odd) { border-right: 1px solid var(--gray-200); padding-right: 24px; }
.qg-item:nth-child(even) { padding-left: 24px; }
.qg-item:hover { color: var(--bordeaux); }
.qg-text { font-size: 15px; font-weight: 600; line-height: 1.45; flex: 1; }
.qg-ts { font-size: 13px; font-weight: 700; color: var(--bordeaux); white-space: nowrap; flex-shrink: 0; }
.qg-meta { font-size: 12px; color: var(--gray-500); white-space: nowrap; flex-shrink: 0; }

/* ── 3-Column Card Grid (CNN small stories) ──────────────────────── */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card3 { display: block; color: var(--gray-900); }
.card3:hover .card3-name { color: var(--bordeaux); }
.card3-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 10px;
}
.card3-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.card3:hover .card3-img img { transform: scale(1.03); }
.card3-num {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  background: var(--bordeaux);
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}
.card3-name { font-size: 18px; font-weight: 800; line-height: 1.25; margin-bottom: 3px; }
.card3-role { font-size: 13px; color: var(--gray-500); margin-bottom: 6px; }
.card3-quote { font-size: 14px; font-weight: 500; color: var(--bordeaux); font-style: italic; line-height: 1.4; margin-bottom: 6px; }
.card3-meta { font-size: 12px; color: var(--gray-500); }

/* ── Highlight Quote (full-width accent break) ───────────────────── */
.feed-highlight {
  background: var(--bordeaux);
}
.feed-highlight .feed-inner { padding: 40px 24px; }
.highlight-q { display: block; text-align: center; color: #fff; }
.highlight-q:hover { color: #fff; }
.highlight-q blockquote {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 12px;
  font-style: normal;
}
.highlight-q cite {
  font-size: 14px;
  font-style: normal;
  color: rgba(255,255,255,0.7);
}

/* ── Dual Card (2-kolom split) ───────────────────────────────────── */
.dual-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.dual-card-item { display: flex; flex-direction: column; color: var(--gray-900); }
.dual-card-item:hover .feed-h3 { color: var(--bordeaux); }
.dual-card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 2px;
  flex-shrink: 0;
}
.dual-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.dual-card-item:hover .dual-card-img img { transform: scale(1.02); }

/* ── Book Banner ─────────────────────────────────────────────────── */
.book-banner {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
}
.book-banner-cover { width: 100%; border-radius: 2px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.book-banner-info {}

/* ── Feed Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-duo { grid-template-columns: 1fr; gap: 16px; }
  .quote-grid-2col { grid-template-columns: 1fr; }
  .qg-item:nth-child(odd) { border-right: none; padding-right: 16px; }
  .qg-item:nth-child(even) { padding-left: 16px; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .dual-card { grid-template-columns: 1fr; }
  .book-banner { grid-template-columns: 120px 1fr; gap: 16px; }
  .feed-h2 { font-size: 24px; }
  .highlight-q blockquote { font-size: 20px; }
}

/* ── Books Shelf (homepage widget) ────────────────────────────────── */
.books-shelf {
  display: flex;
  gap: 32px;
  overflow-x: auto;
}

.books-shelf-item {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 160px;
  color: var(--gray-900);
}
.books-shelf-item:hover strong { color: var(--bordeaux); }

.books-shelf-cover {
  width: 160px;
  height: 230px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  margin-bottom: 10px;
}
.books-shelf-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.books-shelf-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.books-shelf-info strong { font-size: 14px; font-weight: 700; line-height: 1.3; }
.books-shelf-author { font-size: 12px; color: var(--gray-500); }
.books-shelf-ep { font-size: 11px; color: var(--bordeaux); font-weight: 600; }

/* ── Contact Page ────────────────────────────────────────────────── */
.contact-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: var(--gray-50);
  border-radius: 4px;
  border-left: 4px solid var(--bordeaux);
}
.contact-card-icon { font-size: 32px; }
.contact-card h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-500); margin-bottom: 2px; }

.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.location-card-info { padding: 24px; }
.location-card-map { min-height: 250px; }

.contact-socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.contact-social-link {
  display: flex;
  flex-direction: column;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  transition: border-color 0.15s;
}
.contact-social-link:hover { border-color: var(--bordeaux); }
.contact-social-link strong { font-size: 14px; color: var(--gray-900); margin-bottom: 2px; }
.contact-social-link span { font-size: 12px; color: var(--gray-500); }

@media (max-width: 768px) {
  .location-card { grid-template-columns: 1fr; }
  .contact-socials { grid-template-columns: 1fr 1fr; }
}

/* ── Ethos Page (bordeaux hero + image bands between sections) ─── */
.ethos-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.ethos-inner-narrow { max-width: 780px; }

/* Hero: two-column split. Left: bordeaux + text. Right: photograph. */
.ethos-hero-3 {
  position: relative;
  background: #530D27;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  overflow: hidden;
}
.ethos-hero-3-media {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.ethos-hero-3-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ethos-hero-3-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(83, 13, 39, 0.50) 0%,
    rgba(83, 13, 39, 0) 30%
  );
  pointer-events: none;
}
.ethos-hero-3-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 56px 88px max(32px, calc((100vw - 1120px) / 2));
}
.ethos-hero-3 h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 820px;
  margin: 16px 0 28px;
  color: #fff;
}
.ethos-eyebrow-light {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5d9b9;
  padding-left: 14px;
  border-left: 3px solid #f5d9b9;
}
.ethos-lead-light {
  font-size: 18px;
  line-height: 1.7;
  max-width: 780px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.92);
}

/* Kept for backwards compat; unused now */
.ethos-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bordeaux, #530D27);
  padding-left: 14px;
  border-left: 3px solid var(--bordeaux, #530D27);
}
.ethos-lead {
  font-size: 18px;
  line-height: 1.7;
  max-width: 820px;
  margin-bottom: 14px;
  color: #2a2a2a;
}

/* Full-width image band between sections.
   Uses a viewport-aware aspect-ratio approach instead of a fixed height,
   so the full image shows without cropping faces. The background matches
   the bordeaux palette for letterboxing when the image aspect ratio
   differs from the container. */
.ethos-image-band {
  width: 100%;
  max-height: 560px;
  overflow: hidden;
  position: relative;
  background: #2a0712;
}
.ethos-image-band img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 700px) {
  .ethos-image-band { max-height: 360px; }
  .ethos-image-band img { max-height: 360px; }
}

.ethos-section { padding: 80px 0; }
.ethos-section-light { background: #fbf6ee; }
.ethos-section-dark { background: var(--bordeaux, #530D27); color: #fff; }

.ethos-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 36px;
  padding-left: 14px;
  border-left: 3px solid var(--bordeaux, #530D27);
  color: var(--bordeaux, #530D27);
}
.ethos-section-dark .ethos-label {
  color: #f5d9b9;
  border-left-color: #f5d9b9;
}

.ethos-two-col {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
.ethos-two-col-reverse { grid-template-columns: 7fr 5fr; }

.ethos-pull-quote {
  font-size: clamp(22px, 2.3vw, 28px);
  line-height: 1.4;
  font-weight: 500;
  color: #1a1a1a;
  position: sticky;
  top: 80px;
}
.ethos-section-dark .ethos-pull-quote { color: #fff; }

.ethos-pillars-2 {
  list-style: none;
  counter-reset: ethos-counter;
  padding: 0;
  margin: 0 0 28px;
}
.ethos-pillars-2 li {
  counter-increment: ethos-counter;
  padding: 24px 0 24px 56px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}
.ethos-pillars-2 li:last-child { border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
.ethos-pillars-2 li::before {
  content: counter(ethos-counter);
  position: absolute;
  left: 0;
  top: 24px;
  font-size: 22px;
  font-weight: 900;
  color: var(--bordeaux, #530D27);
  font-feature-settings: "tnum";
}
.ethos-section-dark .ethos-pillars-2 li { border-top-color: rgba(255,255,255,0.18); }
.ethos-section-dark .ethos-pillars-2 li:last-child { border-bottom-color: rgba(255,255,255,0.18); }
.ethos-section-dark .ethos-pillars-2 li::before { color: #f5d9b9; }

.ethos-pillars-2 h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
  color: inherit;
}
.ethos-pillars-2 p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  color: #333;
}
.ethos-section-dark .ethos-pillars-2 p { color: rgba(255,255,255,0.88); }

.ethos-ps-2 {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
  padding-left: 14px;
  border-left: 2px solid rgba(0, 0, 0, 0.12);
  margin-top: 8px;
}
.ethos-section-dark .ethos-ps-2 {
  color: rgba(255,255,255,0.75);
  border-left-color: rgba(255,255,255,0.3);
}
.ethos-ps-2 strong { color: var(--bordeaux, #530D27); }
.ethos-section-dark .ethos-ps-2 strong { color: #f5d9b9; }

.ethos-body {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #2a2a2a;
}

.ethos-closing {
  margin: 48px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.5;
  color: var(--bordeaux, #530D27);
  font-weight: 500;
}
.ethos-closing p { margin: 0 0 8px; }
.ethos-closing p:last-child { margin-top: 16px; }
.ethos-closing strong { font-weight: 800; }

@media (max-width: 860px) {
  .ethos-hero-2 { padding: 64px 0 48px; }
  .ethos-section { padding: 56px 0; }
  .ethos-two-col,
  .ethos-two-col-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ethos-pull-quote { position: static; }
  .ethos-two-col-reverse .ethos-col-quote { order: -1; }
  .ethos-hero-3 {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ethos-hero-3-media { height: 280px; }
  .ethos-hero-3-content { padding: 56px 32px; }
  .ethos-hero-3-overlay { display: none; }
}

/* ── Shorts / Clips ──────────────────────────────────────────────── */
.shorts-section { margin-top: 48px; padding-top: 0; border-top: 1px solid var(--gray-200); }
.shorts-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.short-embed {
  flex-shrink: 0;
  width: 180px;
}
.short-embed iframe {
  width: 180px;
  height: 320px;
  border-radius: 12px;
  border: none;
}
.short-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  margin-top: 6px;
  line-height: 1.3;
}

/* Custom YouTube player */
.short-player {
  flex-shrink: 0;
  width: 180px;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--gray-900);
}
.short-player iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.short-player-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s;
}
.short-player-thumb:hover { filter: brightness(0.85); }
.short-player-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s;
}
.short-player-btn:hover { transform: scale(1.1); }

/* ── Guest Showcase (horizontal themed feeds) ────────────────────── */
.guest-showcase {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.guest-showcase::-webkit-scrollbar { height: 4px; }
.guest-showcase::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }

.guest-tile {
  flex-shrink: 0;
  width: 260px;
  scroll-snap-align: start;
  color: var(--gray-900);
  transition: transform 0.15s;
}
.guest-tile:hover { transform: translateY(-3px); }
.guest-tile:hover h3 { color: var(--bordeaux); }

.guest-tile-img {
  width: 260px;
  height: 146px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.guest-tile-img img { width: 100%; height: 100%; object-fit: cover; }

.guest-tile-info h3 { font-size: 15px; font-weight: 800; line-height: 1.25; margin-bottom: 2px; }
.guest-tile-info p { font-size: 12px; color: var(--gray-500); line-height: 1.3; margin-bottom: 4px; }
.guest-tile-ep { font-size: 11px; color: var(--bordeaux); font-weight: 600; }

/* Chronological full guest list (Wikipedia-sourced) */
.guests-list-chrono { }
.guest-chrono-item {
  display: grid;
  grid-template-columns: 56px 220px 1fr 100px;
  gap: 16px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-900);
  font-size: 14px;
}
.guest-chrono-item:hover { color: var(--bordeaux); }
.guest-chrono-item--nolink { cursor: default; color: var(--gray-500); }
.guest-chrono-item--nolink:hover { color: var(--gray-500); }
.guest-chrono-ep {
  font-size: 12px;
  font-weight: 700;
  color: var(--bordeaux);
  font-variant-numeric: tabular-nums;
}
.guest-chrono-name { font-weight: 700; }
.guest-chrono-role { color: var(--gray-500); }
.guest-chrono-date {
  font-size: 12px;
  color: var(--gray-500);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: right;
}
@media (max-width: 680px) {
  .guest-chrono-item {
    grid-template-columns: 44px 1fr;
    gap: 4px 12px;
  }
  .guest-chrono-role { grid-column: 2; font-size: 13px; }
  .guest-chrono-date { grid-column: 2; text-align: left; }
}

/* ── Book Cards ──────────────────────────────────────────────────── */
.book-card { }
.book-card-cover {
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 12px;
  background: var(--gray-200);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.book-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--bordeaux) 0%, #1a0508 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.book-card-title { font-size: 16px; font-weight: 800; margin-bottom: 2px; line-height: 1.3; }
.book-card-author { font-size: 13px; color: var(--gray-500); margin-bottom: 4px; }
.book-card-episode { font-size: 12px; margin-bottom: 6px; }
.book-card-episode a { color: var(--bordeaux); font-weight: 600; }
.book-card-desc { font-size: 13px; color: var(--gray-700); line-height: 1.5; }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  padding: 56px 24px 0;
  background: var(--black);
  color: #fff;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer-brand { max-width: 360px; }
.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}
.footer-logo-dot { color: var(--rose); }
.footer-tagline {
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}
.footer-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rose);
}
.footer-col-text {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links li { padding: 0; }
.footer-links li::before { content: none; }
.footer-links a {
  font-size: 13px;
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 239, 230, 0.12);
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 22px 0 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
.footer-disclaimer {
  font-size: 11px;
  line-height: 1.6;
  margin: 0;
  max-width: 760px;
}
.footer-copy {
  font-size: 11px;
  margin: 0;
  white-space: nowrap;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-3col { grid-template-columns: 1fr 1.5fr; }
  .hero-right { display: none; }
}
@media (max-width: 768px) {
  .nav { gap: 16px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-3col { grid-template-columns: 1fr; padding: 16px; gap: 0; }
  .hero-left { display: none; }
  .hero-right { display: none; }
  .hero-center-headline { font-size: 24px; text-align: left; }
  .episodes-grid { grid-template-columns: 1fr; }
  .clips-scroll { grid-template-columns: repeat(2, 1fr); }
  .book-layout { grid-template-columns: 1fr; gap: 24px; }
  .book-cover { order: -1; }
  .book-cover img { max-height: 200px; margin: 0 auto; }
  .ep-sidebar-left { display: none; }
  .ep-3col {
    grid-template-columns: 1fr;
    max-width: 720px;
    padding: 20px 16px;
  }
  .ep-sidebar-right {
    position: static;
    border-top: 1px solid var(--gray-200);
    padding-top: 24px;
  }
  .footer { padding: 40px 20px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 28px; }
  .footer-bottom-inner { grid-template-columns: 1fr; gap: 12px; padding: 20px 0 24px; }
  .footer-copy { white-space: normal; }
  .trending-bar { display: none; }
}

/* ── Transcript (SEO-friendly raw YouTube captions) ──────────────── */
.transcript-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.transcript-details {
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: var(--gray-50, #fafafa);
}
.transcript-summary {
  padding: 14px 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800, #262626);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
.transcript-summary::-webkit-details-marker { display: none; }
.transcript-summary::before {
  content: "▸";
  font-size: 11px;
  color: #530D27;
  margin-right: 8px;
  transition: transform 0.15s ease;
  display: inline-block;
}
.transcript-details[open] .transcript-summary::before {
  transform: rotate(90deg);
}
.transcript-summary-label {
  flex: 1;
  color: #530D27;
  letter-spacing: 0.02em;
}
.transcript-summary-meta {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-500);
}
.transcript-body {
  padding: 8px 22px 24px;
  border-top: 1px solid var(--gray-200);
}
.transcript-heading {
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 8px;
  color: var(--gray-900, #171717);
}
.transcript-source {
  font-size: 13px;
  color: var(--gray-600, #525252);
  line-height: 1.6;
  margin: 8px 0 14px;
}
.transcript-footer {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
  font-size: 12px;
}
.transcript-paragraphs {
  margin-top: 12px;
}
.transcript-p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-800, #262626);
  margin: 0 0 14px;
  padding-left: 62px;
  position: relative;
  text-indent: 0;
}
.transcript-ts {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #c00;
  padding: 2px 6px;
  border-radius: 3px;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  line-height: 1.4;
}
.transcript-ts:hover { background: #a00; }

@media (max-width: 640px) {
  .transcript-body { padding: 8px 14px 20px; }
  .transcript-p { padding-left: 0; padding-top: 22px; }
  .transcript-ts { top: 0; }
}

/* ── Transcript CTA (link from episode to dedicated transcript page) ──── */
.transcript-cta {
  margin: 18px 0 14px;
  padding: 14px 18px;
  background: #fbf6ee;
  border-left: 3px solid #530D27;
  font-size: 14px;
  line-height: 1.6;
  color: #2b2b2b;
}
.transcript-cta a {
  color: #530D27;
  font-weight: 700;
  text-decoration: underline;
}
.transcript-cta-note {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #666;
}

/* ── Dedicated transcript page layout ─────────────────────────────── */
.transcript-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.transcript-page-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}
.transcript-page-header .back-link {
  display: inline-block;
  margin-bottom: 12px;
  color: #530D27;
  font-size: 13px;
  text-decoration: none;
}
.transcript-page-header .back-link:hover { text-decoration: underline; }
.transcript-page-header h1 {
  font-size: 34px;
  line-height: 1.15;
  margin: 10px 0 6px;
}
.transcript-page-meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 18px;
}
.transcript-page-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.transcript-preamble {
  background: #f7f3ec;
  border-left: 3px solid #530D27;
  padding: 22px 26px;
  margin-bottom: 36px;
  font-size: 14.5px;
  line-height: 1.65;
}
.transcript-preamble h2 {
  font-size: 18px;
  margin: 0 0 10px;
  color: #530D27;
}
.transcript-preamble h3 {
  font-size: 15px;
  margin: 18px 0 6px;
  color: #2b2b2b;
}
.transcript-preamble code {
  background: #fff;
  border: 1px solid #e5e0d3;
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 12.5px;
}
.transcript-preamble pre {
  background: #fff;
  border: 1px solid #e5e0d3;
  padding: 12px 14px;
  border-radius: 4px;
  overflow-x: auto;
  font-size: 12.5px;
  line-height: 1.5;
}
.transcript-preamble pre code {
  background: transparent;
  border: 0;
  padding: 0;
}
.transcript-preamble-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: #666;
  font-style: italic;
}

.transcript-page .transcript-body {
  padding: 0;
}
.transcript-page .transcript-heading {
  font-size: 22px;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}
.transcript-page .transcript-paragraphs {
  font-size: 15.5px;
  line-height: 1.75;
}

.ai-disclaimer {
  margin: 36px 0 24px;
  padding: 16px 20px;
  background: #fbf6ee;
  border-left: 3px solid #530D27;
  font-size: 13.5px;
  line-height: 1.6;
  color: #333;
}
.ai-disclaimer p { margin: 0; }
.ai-disclaimer p + p { margin-top: 8px; font-size: 12.5px; color: #555; }
.ai-disclaimer strong { color: #530D27; }
.ai-disclaimer a { color: #530D27; text-decoration: underline; }
.ai-disclaimer-links a { font-weight: 500; }

.transcript-license {
  margin-top: 48px;
  padding: 20px 24px;
  border-top: 1px solid #e5e5e5;
  background: #fafafa;
  font-size: 13px;
  line-height: 1.6;
  color: #444;
}
.transcript-license a {
  color: #530D27;
  text-decoration: underline;
}
.transcript-license img {
  height: 31px;
  width: 88px;
}

/* ── Intro Banner (setting the scene on homepage) ───────────────── */
.intro-banner {
  background: linear-gradient(135deg, #3d0a1d 0%, #530D27 55%, #6a1032 100%);
  color: #fff;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.intro-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 120%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(ellipse at 90% -20%, rgba(255,255,255,0.05), transparent 50%);
  pointer-events: none;
}
.intro-banner-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.intro-ethos { max-width: 560px; }
.intro-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--rose);
  padding: 0 0 8px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--rose);
}
.intro-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #fff;
  letter-spacing: -0.01em;
}
.intro-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin: 0 0 12px;
}
.intro-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color 0.15s ease;
}
.intro-link:hover { border-color: #fff; }

.intro-podcast {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 400px;
  justify-self: end;
}
.intro-podcast-img {
  display: block;
  width: 100%;
  transition: transform 0.2s ease;
}
.intro-podcast-img:hover { transform: translateY(-2px); }
.intro-podcast-img img {
  width: 100%;
  height: auto;
  display: block;
}
.intro-podcast-desc {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.intro-stat {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.intro-btn-spotify {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.intro-btn-spotify:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.5);
}
.intro-btn-spotify-logo {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .intro-banner { height: auto; }
  .intro-banner-inner {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 24px;
  }
  .intro-title { font-size: 26px; }
  .intro-text { font-size: 14px; }
  .intro-podcast {
    max-width: none;
    justify-self: stretch;
    gap: 12px;
  }
  .intro-podcast-desc { font-size: 13px; }
}

/* ── Featured Guests (compact text block on Gasten page) ─────────── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px 40px;
}
.featured-cat {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e8a8b8;
  margin: 0 0 14px;
}
.featured-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.featured-list li {
  font-size: 14px;
  line-height: 1.55;
  padding: 3px 0;
}
.featured-list li strong {
  font-weight: 700;
  color: #fff;
}
.featured-list a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.15s ease;
}
.featured-list a:hover { color: #fff; }
.featured-list a strong { color: #fff; }
.featured-pending {
  color: rgba(255,255,255,0.42);
}
.featured-pending strong { color: rgba(255,255,255,0.58); font-weight: 600; }

@media (max-width: 640px) {
  .featured-grid { gap: 32px 24px; grid-template-columns: 1fr; }
}

/* ── Over ons: host cards ────────────────────────────────────────── */
.about-hero-title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.about-hero-sub {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0 0 20px;
}
.about-hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-900);
  max-width: 720px;
}
.about-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.host-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.host-card-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  background: var(--gray-100);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.host-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.host-card-body h3 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 4px;
}
.host-card-role {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0 0 16px;
}
.host-card-quote {
  font-size: 17px;
  line-height: 1.5;
  font-style: italic;
  color: var(--bordeaux);
  border-left: 3px solid var(--bordeaux);
  padding: 6px 0 6px 14px;
  margin: 0 0 16px;
}
.host-card-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 0 0 16px;
}
.host-card-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}
.host-card-links a {
  color: var(--bordeaux);
  font-weight: 600;
  border-bottom: 1px solid rgba(83,13,39,0.3);
  padding-bottom: 1px;
}
.host-card-links a:hover { border-color: var(--bordeaux); }

@media (max-width: 768px) {
  .hosts-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-hero-title { font-size: 30px; }
  .host-card-photo { max-width: 360px; }
}

/* ── Contact: VZW details ────────────────────────────────────────── */
.vzw-details {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 10px 24px;
  font-size: 15px;
  line-height: 1.6;
}
.vzw-details dt {
  font-weight: 700;
  color: var(--gray-900);
}
.vzw-details dd {
  margin: 0;
  color: var(--gray-700);
}
.vzw-details a {
  color: var(--bordeaux);
  font-weight: 600;
}
.vzw-details a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .vzw-details { grid-template-columns: 1fr; gap: 4px; }
  .vzw-details dd { margin-bottom: 12px; }
}

/* ── Book divider (homepage, between feed sections) ───────────────── */
.book-divider {
  background: linear-gradient(135deg, #3d0a1d 0%, #530D27 60%, #6a1032 100%);
  color: #fff;
}
.book-divider-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  color: #fff;
  padding: 24px 0;
}
.book-divider-inner:hover { color: #fff; }
.book-divider-inner:hover .book-divider-cta { border-color: #fff; }
.book-divider-cover img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.45);
}
.book-divider-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e8a8b8;
  margin-bottom: 10px;
  border-left: 3px solid #e8a8b8;
  padding-left: 10px;
}
.book-divider-title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.book-divider-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin: 0 0 16px;
}
.book-divider-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin: 0 0 16px;
  max-width: 680px;
}
.book-divider-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}

@media (max-width: 768px) {
  .book-divider-inner { grid-template-columns: 1fr; gap: 24px; padding: 8px 0; }
  .book-divider-cover { max-width: 180px; }
  .book-divider-title { font-size: 26px; }
}

/* ── Boeken page: De Dialoog Paradox hero ────────────────────────── */
.book-hero { padding-top: 56px; padding-bottom: 56px; }
.book-hero-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}
.book-hero-cover img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.book-hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bordeaux);
  border-left: 3px solid var(--bordeaux);
  padding-left: 10px;
  margin-bottom: 12px;
}
.book-hero-title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.book-hero-sub {
  font-size: 18px;
  font-style: italic;
  color: var(--gray-700);
  margin: 0 0 12px;
}
.book-hero-meta {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0 0 20px;
}
.book-hero-lead {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.book-hero-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.book-longread {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
}
.book-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.book-bullets li {
  font-size: 16px;
  line-height: 1.6;
  padding: 6px 0 6px 22px;
  position: relative;
}
.book-bullets li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--bordeaux);
  font-weight: 800;
}
.book-cta-strip { padding: 48px 24px; }
.book-cta-title {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 6px;
}
.book-cta-sub {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0 0 20px;
}

@media (max-width: 768px) {
  .book-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .book-hero-cover { max-width: 240px; }
  .book-hero-title { font-size: 32px; }
}

/* ── Mediakit (Partnership 2026 stijl) ───────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Poppins:ital,wght@0,400;1,300&display=swap');

.mk {
  --mk-burgundy-deep: #2E0A11;
  --mk-burgundy-mid: #5A1820;
  --mk-burgundy-soft: #7A2430;
  --mk-rose: #D94E6A;
  --mk-rose-muted: #B13C56;
  --mk-cream: #F5EFE6;
  --mk-cream-warm: #EDE3D4;
  --mk-ink: #1A0509;
  --mk-paper: #FBF7F0;
  --mk-sans: 'Lato', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  --mk-serif: 'Poppins', Georgia, serif;
  font-family: var(--mk-sans);
  color: var(--mk-ink);
  -webkit-font-smoothing: antialiased;
}

.mk-page {
  padding: 88px 24px 96px;
  position: relative;
  overflow: hidden;
}
.mk-dark {
  background: var(--mk-burgundy-deep);
  color: var(--mk-cream);
}
.mk-light {
  background: var(--mk-paper);
  color: var(--mk-ink);
}
.mk-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Kickers — rose uppercase labels */
.mk-kicker {
  display: inline-block;
  font-family: var(--mk-sans);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--mk-rose);
  margin-bottom: 12px;
}
.mk-kicker-num { letter-spacing: 0.2em; }
.mk-kicker-sm {
  display: block;
  font-family: var(--mk-sans);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mk-rose);
  margin-bottom: 8px;
}

.mk-rule-thick {
  width: 68px;
  height: 2px;
  background: var(--mk-rose);
  margin-bottom: 28px;
}

/* Headlines — Lato Black uppercase */
.mk-h1 {
  font-family: var(--mk-sans);
  font-weight: 900;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 28px;
}

/* Lede — Poppins light italic */
.mk-lede {
  font-family: var(--mk-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 640px;
}
.mk-dark .mk-lede { color: var(--mk-rose); }
.mk-light .mk-lede { color: var(--mk-burgundy-mid); }

/* Body */
.mk-body {
  font-family: var(--mk-sans);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 16px;
  max-width: 640px;
}
.mk-dark .mk-body { color: rgba(245,239,230,0.88); }
.mk-dark .mk-body strong { color: var(--mk-rose); font-weight: 700; }

/* ── COVER page ──────────────────────────────────────────────── */
.mk-cover { padding: 72px 24px 80px; min-height: 80vh; display: flex; align-items: center; }
.mk-wordmark {
  margin: 24px 0 64px;
  line-height: 0.9;
}
.mk-wordmark-main {
  display: block;
  font-family: var(--mk-sans);
  font-weight: 900;
  font-size: clamp(56px, 10vw, 120px);
  letter-spacing: -0.01em;
  color: var(--mk-cream);
}
.mk-dot { color: var(--mk-rose); }
.mk-wordmark-sub {
  display: block;
  font-family: var(--mk-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--mk-rose);
  margin-top: 4px;
  letter-spacing: 0;
}
.mk-cover-title {
  font-family: var(--mk-sans);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--mk-cream);
}
.mk-footer-note {
  margin-top: 64px;
  font-family: var(--mk-sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.55);
}

/* ── HOSTS ─────────────────────────────────────────────────────── */
.mk-hosts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 40px;
  margin: 44px 0 8px;
}
.mk-host {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: start;
}
.mk-host-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--mk-rose);
  padding: 4px;
  box-sizing: content-box;
}
.mk-host-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(1) contrast(1.05);
  display: block;
}
.mk-host-body { min-width: 0; }
.mk-host-name {
  font-family: var(--mk-sans);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.02em;
  margin: 6px 0 14px;
}
.mk-host-quote {
  font-family: var(--mk-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}
.mk-host-bio {
  font-family: var(--mk-sans);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.mk-host-links {
  font-family: var(--mk-sans);
  font-size: 13.5px;
  margin: 0;
}
.mk-host-links a {
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.mk-host-links a:hover { border-bottom-width: 2px; }
.mk-dot-sep { margin: 0 8px; opacity: 0.5; }

/* Light variant (over-ons) */
.mk-light .mk-host-name { color: var(--mk-burgundy); }
.mk-light .mk-host-quote { color: var(--mk-burgundy-mid); }
.mk-light .mk-host-bio { color: #2a2a2a; }
.mk-light .mk-host-links a { color: var(--mk-burgundy); }

/* Dark variant (media-sponsors) */
.mk-dark .mk-host-name { color: var(--mk-cream); }
.mk-dark .mk-host-quote { color: var(--mk-rose); }
.mk-dark .mk-host-bio { color: rgba(245,239,230,0.85); }
.mk-dark .mk-host-links a { color: var(--mk-rose); }

@media (max-width: 820px) {
  .mk-hosts { grid-template-columns: 1fr; gap: 44px; }
  .mk-host { grid-template-columns: 120px 1fr; gap: 20px; }
  .mk-host-photo { width: 120px; height: 120px; }
}

/* ── NARRATIVE (over-ons ons-verhaal) ──────────────────────────── */
.mk-narrative {
  max-width: 760px;
  margin-top: 32px;
}
.mk-narrative .mk-lede { margin-bottom: 24px; }
.mk-narrative .mk-body {
  font-family: var(--mk-sans);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.mk-dark .mk-narrative .mk-body { color: rgba(245,239,230,0.88); }
.mk-light .mk-narrative .mk-body { color: #2a2a2a; }

/* Outline CTA button variant */
.mk-cta-btn-outline {
  background: transparent;
  border: 1px solid currentColor;
}
.mk-cta-btn-outline:hover { background: rgba(0,0,0,0.04); }

/* ── STATS ─────────────────────────────────────────────────────── */
.mk-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid rgba(245,239,230,0.25);
  margin-top: 24px;
}
.mk-light .mk-stats { border-top-color: rgba(46,10,17,0.18); }
.mk-stat { display: flex; flex-direction: column; gap: 6px; }
.mk-stat-num {
  font-family: var(--mk-sans);
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--mk-rose);
  line-height: 1;
  letter-spacing: -0.01em;
}
.mk-stat-label {
  font-family: var(--mk-sans);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245,239,230,0.75);
}
.mk-light .mk-stat-label { color: var(--mk-burgundy-mid); }

/* ── GUESTS grid ──────────────────────────────────────────────── */
.mk-guests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 56px;
  margin-top: 32px;
}
.mk-guest-col { }
.mk-cat {
  font-family: var(--mk-sans);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mk-rose);
  margin: 0 0 8px;
}
.mk-cat-rule {
  width: 64px;
  height: 1px;
  background: var(--mk-rose-muted);
  margin-bottom: 14px;
}
.mk-guest-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mk-guest-col li {
  font-family: var(--mk-sans);
  font-size: 14px;
  line-height: 1.6;
  padding: 3px 0;
  color: var(--mk-ink);
}
.mk-guest-col li strong { font-weight: 700; }

/* ── PERSONAS ─────────────────────────────────────────────────── */
.mk-personas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 48px;
}
.mk-persona {
  border-left: 3px solid var(--mk-rose);
  padding: 4px 20px;
}
.mk-persona-title {
  font-family: var(--mk-sans);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mk-cream);
  margin: 0 0 10px;
}
.mk-persona p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(245,239,230,0.82);
  margin: 0;
}

/* ── REASONS grid ─────────────────────────────────────────────── */
.mk-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
  margin-top: 32px;
}
.mk-reason {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
}
.mk-reason-num {
  font-family: var(--mk-sans);
  font-weight: 900;
  font-size: 18px;
  color: var(--mk-rose);
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding-top: 2px;
}
.mk-reason h4 {
  font-family: var(--mk-sans);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mk-ink);
  margin: 0 0 10px;
  line-height: 1.3;
}
.mk-reason p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--mk-burgundy-mid);
  margin: 0;
}

/* ── PACKAGES ─────────────────────────────────────────────────── */
.mk-pack-main {
  border: 1px solid var(--mk-rose);
  padding: 40px 36px;
  margin: 40px 0 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
.mk-pack-body { }
.mk-pack-kicker {
  display: block;
  font-family: var(--mk-sans);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mk-rose);
  margin-bottom: 12px;
}
.mk-pack-title {
  font-family: var(--mk-sans);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--mk-cream);
  margin: 0 0 6px;
}
.mk-pack-sub {
  font-family: var(--mk-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  color: rgba(245,239,230,0.7);
  margin: 0 0 20px;
}
.mk-pack-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mk-pack-list li {
  font-family: var(--mk-sans);
  font-size: 13.5px;
  line-height: 1.55;
  padding: 5px 0 5px 16px;
  position: relative;
  color: rgba(245,239,230,0.9);
}
.mk-pack-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 2px;
  background: var(--mk-rose);
}
.mk-pack-price {
  text-align: left;
  border-left: 1px solid rgba(217,78,106,0.35);
  padding-left: 28px;
}
.mk-price-num {
  display: block;
  font-family: var(--mk-sans);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: var(--mk-rose);
  letter-spacing: -0.01em;
}
.mk-price-num-sm { font-size: 26px; margin-top: 12px; }
.mk-price-label {
  display: block;
  font-family: var(--mk-sans);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245,239,230,0.65);
  margin-top: 8px;
}

.mk-packs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mk-pack-addon {
  border: 1px solid rgba(217,78,106,0.5);
  padding: 22px 24px;
}
.mk-pack-addon-title {
  font-family: var(--mk-sans);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--mk-cream);
  margin: 0 0 10px;
}
.mk-pack-addon p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245,239,230,0.82);
  margin: 0 0 4px;
}

/* ── CONTACT ──────────────────────────────────────────────────── */
.mk-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(245,239,230,0.25);
  margin-top: 32px;
}
.mk-contact-name {
  font-family: var(--mk-sans);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--mk-cream);
  margin: 0 0 16px;
}
.mk-contact-col p {
  font-family: var(--mk-sans);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,239,230,0.88);
  margin: 0 0 6px;
}
.mk-contact-col a {
  color: var(--mk-rose);
  text-decoration: none;
  border-bottom: 1px solid rgba(217,78,106,0.3);
  padding-bottom: 1px;
  transition: border-color 0.15s ease;
}
.mk-contact-col a:hover { border-bottom-color: var(--mk-rose); color: var(--mk-rose); }
.mk-contact-col a em { font-family: var(--mk-serif); font-style: italic; font-weight: 300; }
.mk-edition {
  font-family: var(--mk-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: rgba(245,239,230,0.55);
  text-align: center;
  margin-top: 56px;
}

/* ── Sponsor tabs (media-sponsors / hoofdsponsor / aflevering) ───── */
/* Renders outside .mk wrapper, so --mk-* vars don't resolve here;
   use hex values directly. */
.mk-tabs {
  position: sticky;
  top: 56px;
  z-index: 90;
  background: #2E0A11;
  border-bottom: 1px solid rgba(217,78,106,0.25);
}
.mk-tabs-inner {
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  display: flex;
  gap: 0;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.mk-tabs-inner::-webkit-scrollbar { display: none; }
.mk-tab {
  padding: 16px 20px;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.78);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.mk-tab:hover { color: #F5EFE6; }
.mk-tab.is-active {
  color: #F5EFE6;
  border-bottom-color: #D94E6A;
}

/* ── Case grid (€1000 extrapolation) ─────────────────────────────── */
.mk-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.mk-case-grid-single {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.mk-case-col {
  padding: 32px 28px;
  background: rgba(245,239,230,0.04);
  border: 1px solid rgba(245,239,230,0.12);
  border-radius: 4px;
}
.mk-case-col-highlight {
  background: rgba(217,78,106,0.08);
  border-color: rgba(217,78,106,0.45);
}
.mk-case-title {
  font-family: var(--mk-serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--mk-cream);
  margin: 14px 0 18px;
  line-height: 1.2;
}
.mk-light .mk-case-title { color: var(--mk-ink); }
.mk-case-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mk-case-list li {
  font-family: var(--mk-sans);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245,239,230,0.82);
  padding-left: 20px;
  position: relative;
}
.mk-case-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 1px;
  background: var(--mk-rose);
}
.mk-case-list li strong {
  color: var(--mk-cream);
  font-weight: 700;
}
.mk-case-col-highlight .mk-case-list li strong { color: var(--mk-rose); }
.mk-case-note {
  font-family: var(--mk-serif);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(245,239,230,0.55);
  margin: 20px 0 0;
}
.mk-body-center {
  text-align: center;
  max-width: 720px;
  margin: 40px auto 0;
  font-style: italic;
  opacity: 0.82;
}
.mk-closer {
  font-style: normal;
  font-family: 'Poppins', Georgia, serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.35;
  opacity: 1;
  color: #F5EFE6;
  margin-top: 28px;
  border-top: 1px solid rgba(217,78,106,0.35);
  padding-top: 28px;
}

/* ── CTA link used in mk-pack-addon on media-sponsors ────────────── */
.mk-cta {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--mk-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--mk-burgundy-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--mk-rose);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.mk-cta:hover { color: var(--mk-rose); }

/* mk-pack-addon on light backgrounds (media-sponsors "Twee manieren") */
.mk-light .mk-pack-addon-title { color: var(--mk-ink); }
.mk-light .mk-pack-addon p { color: rgba(26,5,9,0.78); }

/* mk-persona on light backgrounds (afleveringspartner "Voor wie") */
.mk-light .mk-persona-title { color: var(--mk-ink); }
.mk-light .mk-persona p { color: rgba(26,5,9,0.78); }

/* mk-pack-main on light backgrounds (afleveringspartner pricing) */
.mk-light .mk-pack-title { color: var(--mk-ink); }
.mk-light .mk-pack-sub { color: rgba(46,10,17,0.65); }
.mk-light .mk-pack-list li { color: rgba(26,5,9,0.82); }

/* ── Flow (afleveringspartner: 4 stappen + side visual) ──────────── */
.mk-flow-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}
.mk-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mk-flow-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
}
.mk-flow-num {
  font-family: 'Poppins', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 26px;
  color: var(--mk-rose);
  line-height: 1;
  padding-top: 2px;
}
.mk-flow-step h4 {
  font-family: var(--mk-sans);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--mk-cream);
  margin: 0 0 6px;
}
.mk-flow-step p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,239,230,0.8);
  margin: 0;
}
.mk-flow-visual {
  margin: 0;
  position: sticky;
  top: 140px;
}
.mk-flow-visual img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.mk-flow-visual figcaption {
  margin-top: 14px;
  font-family: 'Poppins', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(245,239,230,0.55);
  text-align: center;
}

/* ── Metric legend (impressies / views / clicks explainer) ───────── */
.mk-metric-legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0 32px;
  padding: 28px 24px;
  background: rgba(245,239,230,0.04);
  border: 1px solid rgba(245,239,230,0.1);
  border-radius: 4px;
}
.mk-metric-item {}
.mk-metric-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #D94E6A;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(217,78,106,0.35);
}
.mk-metric-item p {
  font-family: 'Lato', sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(245,239,230,0.82);
  margin: 0;
}
.mk-metric-item p strong {
  display: block;
  color: #F5EFE6;
  font-weight: 700;
  margin-bottom: 4px;
}

/* ── Compare table (industry standard vs Discours) ───────────────── */
.mk-compare {
  margin: 40px 0 32px;
  border: 1px solid rgba(245,239,230,0.12);
  border-radius: 4px;
  overflow: hidden;
}
.mk-compare-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: 16px;
  padding: 14px 20px;
  font-family: var(--mk-sans);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245,239,230,0.82);
  border-bottom: 1px solid rgba(245,239,230,0.08);
}
.mk-compare-row:last-child { border-bottom: 0; }
.mk-compare-head {
  background: rgba(245,239,230,0.04);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(245,239,230,0.55);
}
.mk-compare-ours {
  font-weight: 700;
  color: var(--mk-cream);
}
.mk-compare-delta {
  font-weight: 700;
  color: var(--mk-rose);
}

/* ── Cover with side photo (media-sponsors hero) ─────────────────── */
.mk-cover-split .mk-cover-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 96px;
  align-items: center;
  padding-top: 48px;
}
.mk-cover-text { min-width: 0; }
.mk-cover-photo {
  margin: 0;
  max-width: 340px;
  justify-self: end;
}
.mk-cover-photo img { max-height: 520px; object-fit: contain; }
.mk-cover-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.mk-cover-photo figcaption {
  margin-top: 12px;
  font-family: 'Poppins', Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(245,239,230,0.55);
  text-align: right;
}
.mk-cover-photo figcaption a {
  color: rgba(245,239,230,0.85);
  border-bottom: 1px solid rgba(217,78,106,0.6);
  font-style: normal;
  transition: color 0.15s, border-color 0.15s;
}
.mk-cover-photo figcaption a:hover { color: #D94E6A; border-bottom-color: #D94E6A; }
.mk-reason-link {
  display: inline-block;
  margin-top: 6px;
  color: inherit;
  border-bottom: 1px solid rgba(217,78,106,0.55);
  font-weight: 700;
  transition: color 0.15s, border-color 0.15s;
}
.mk-reason-link:hover { color: #D94E6A; border-bottom-color: #D94E6A; }

/* ── Download PDF button on mk-cover ─────────────────────────────── */
.mk-cover-actions {
  margin-top: 32px;
  margin-bottom: 0;
}
.mk-cover-actions-dual {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.mk-cover-actions-dual .mk-cta-btn {
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  justify-content: center;
  letter-spacing: 0.08em;
  padding: 12px 14px;
}
@media (max-width: 520px) {
  .mk-cover-actions-dual .mk-cta-btn { flex: 1 1 100%; }
}
.mk-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F5EFE6;
  text-decoration: none;
  background: transparent;
  border: 1px solid rgba(245,239,230,0.42);
  border-radius: 2px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.mk-cta-btn:hover {
  background: rgba(245,239,230,0.08);
  border-color: #F5EFE6;
  color: #F5EFE6;
}
.mk-cta-btn-primary {
  background: #D94E6A;
  border-color: #D94E6A;
  color: #2E0A11;
}
.mk-cta-btn-primary:hover {
  background: #F5EFE6;
  border-color: #F5EFE6;
  color: #2E0A11;
}
.mk-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--mk-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mk-cream);
  text-decoration: none;
  background: transparent;
  border: 1px solid rgba(245,239,230,0.4);
  border-radius: 2px;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.mk-download-btn:hover {
  color: var(--mk-burgundy-deep);
  background: var(--mk-cream);
  border-color: var(--mk-cream);
}
.mk-download-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .mk-page { padding: 64px 20px 72px; }
  .mk-hosts { grid-template-columns: 1fr; gap: 40px; }
  .mk-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .mk-guests-grid { grid-template-columns: 1fr; gap: 28px; }
  .mk-personas { grid-template-columns: 1fr; }
  .mk-reasons { grid-template-columns: 1fr; gap: 20px; }
  .mk-pack-main { grid-template-columns: 1fr; gap: 28px; padding: 28px 22px; }
  .mk-pack-price { border-left: none; padding-left: 0; padding-top: 24px; border-top: 1px solid rgba(217,78,106,0.35); }
  .mk-packs-grid { grid-template-columns: 1fr; }
  .mk-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .mk-case-grid { grid-template-columns: 1fr; gap: 16px; }
  .mk-tabs { top: 56px; }
  .mk-tab { padding: 14px 14px; font-size: 12px; letter-spacing: 0.06em; }
  .mk-cover-split .mk-cover-inner { grid-template-columns: 1fr; gap: 32px; }
  .mk-cover-photo { max-width: 100%; justify-self: stretch; }
  .mk-cover-photo figcaption { text-align: left; }
  .mk-flow-layout { grid-template-columns: 1fr; gap: 32px; }
  .mk-flow-visual { position: static; order: -1; }
  .mk-flow-visual img { max-width: 240px; }
  .mk-compare-row { grid-template-columns: 1fr 1fr; gap: 8px 16px; padding: 14px 16px; font-size: 13px; }
  .mk-compare-head { display: none; }
  .mk-metric-legend { grid-template-columns: 1fr; gap: 20px; padding: 22px 18px; }
}

/* ── Famous Guests showcase (homepage, replaces "Meer afleveringen") ─ */
.famous-guests {
  padding: 48px 24px;
}
.famous-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}
.famous-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bordeaux);
  margin-bottom: 10px;
  border-left: 3px solid var(--bordeaux);
  padding-left: 10px;
}
.famous-title {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.famous-sub {
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-500);
  margin: 0;
}
.famous-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  margin-bottom: 36px;
}
.famous-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--gray-900);
  transition: transform 0.15s ease;
}
.famous-tile:hover { transform: translateY(-3px); color: var(--gray-900); }
.famous-tile:hover .famous-name { color: var(--bordeaux); }
.famous-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border: 3px solid #fff;
  outline: 1px solid var(--gray-200);
}
.famous-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.famous-tile:hover .famous-photo img { transform: scale(1.05); }
.famous-name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 3px;
  transition: color 0.15s ease;
}
.famous-role {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.3;
}
.famous-cta {
  text-align: center;
}
.famous-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--bordeaux);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.famous-cta-btn:hover { background: #3d0a1d; color: #fff; }

@media (max-width: 900px) { .famous-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) {
  .famous-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .famous-photo { width: 110px; height: 110px; }
}

/* ── Hero sidebar Spotify CTA (primary met Spotify logo) ──────────── */
.hero-cta-spotify {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-cta-logo {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════
 *  BRAND STYLE PASS — alle pagina's trekken de huisstijl van de
 *  mediakit door. Layout/functie blijft, typografie en accenten
 *  volgen de brand guide.
 *  ══════════════════════════════════════════════════════════════════ */

/* Topbar — burgundy deep met rose accent link */
.topbar { letter-spacing: 0.04em; font-weight: 400; }
.topbar a {
  text-decoration: none;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 1px;
  color: var(--rose);
}
.topbar a:hover { color: #fff; border-bottom-color: #fff; }

/* Nav — ink met rose hover */
.nav-logo-text {
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.nav-links a { font-weight: 700; letter-spacing: 0.02em; }
.nav-links a:hover { color: var(--rose); }

/* Hero center (homepage) — gast naam in Lato Black */
.hero-center-headline {
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: -0.01em;
}

/* Section-header pipe header — brand-upgrade: rose pipe, uppercase Lato Black */
.section-header h2,
.section-h {
  font-family: var(--font);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.section-header {
  position: relative;
  padding-left: 14px;
  margin-bottom: 20px;
  border-left: 3px solid var(--rose);
}
.section-header h2 {
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--burgundy-deep);
  line-height: 1.2;
  margin: 0;
}
.section-sub {
  font-family: var(--font-italic);
  font-weight: 300;
  font-style: italic;
  color: var(--burgundy-mid);
  font-size: 15px;
  margin-top: 6px;
}

/* Buttons — burgundy deep primary, cream outline on dark, warmer hover */
.btn {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--burgundy-deep);
  color: var(--cream);
  border: 1px solid var(--burgundy-deep);
}
.btn-primary:hover {
  background: var(--burgundy-mid);
  border-color: var(--burgundy-mid);
  color: var(--cream);
}
.btn-outline {
  border: 1px solid var(--burgundy-deep);
  color: var(--burgundy-deep);
  background: transparent;
}
.btn-outline:hover {
  background: var(--burgundy-deep);
  color: var(--cream);
}

/* Hero-right sidebar — brand typography */
.hero-sidebar-title {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--burgundy-deep);
}
.hero-right-ethos h3 { font-family: var(--font); font-weight: 700; letter-spacing: 0.02em; }
.hero-right-ethoslink { color: var(--rose); }
.hero-right-ethoslink:hover { color: var(--burgundy-deep); }

/* Hero-left topic teasers — rose accent */
.hero-left-heading {
  color: var(--burgundy-deep);
  border-left-color: var(--rose);
}
.hero-left-item .label { color: var(--rose); letter-spacing: 0.14em; }
.hero-left-item h3 { font-family: var(--font); font-weight: 700; }

/* Intro banner — keep gradient but use brand vars */
.intro-banner {
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, #3d0a1d 55%, var(--burgundy-mid) 100%);
  color: var(--cream);
}
.intro-eyebrow { color: var(--rose); letter-spacing: 0.22em; }
.intro-title {
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.intro-text { color: rgba(245, 239, 230, 0.88); }
.intro-link {
  color: var(--cream);
  border-bottom-color: var(--rose);
}
.intro-link:hover { border-bottom-color: var(--cream); }
.intro-stat { color: var(--cream); font-family: var(--font); font-weight: 900; }
.intro-podcast-desc { color: rgba(245, 239, 230, 0.82); }

/* Intro Spotify btn — subtle op burgundy */
.intro-btn-spotify {
  border-color: rgba(245, 239, 230, 0.3);
  color: var(--cream);
}
.intro-btn-spotify:hover {
  background: rgba(245, 239, 230, 0.15);
  border-color: rgba(245, 239, 230, 0.55);
}
.intro-btn-spotify-logo { fill: var(--cream); }

/* Book divider — brand palette */
.book-divider {
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, #3d0a1d 55%, var(--burgundy-mid) 100%);
}
.book-divider-eyebrow {
  color: var(--rose);
  border-left-color: var(--rose);
  letter-spacing: 0.22em;
}
.book-divider-title {
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-transform: uppercase;
  font-size: 38px;
}
.book-divider-sub {
  font-family: var(--font-italic);
  font-weight: 300;
  font-style: italic;
  color: var(--rose);
}
.book-divider-desc { color: rgba(245, 239, 230, 0.88); font-family: var(--font); }
.book-divider-cta { color: var(--cream); border-bottom-color: var(--rose); }

/* Famous guests — rose eyebrow + burgundy CTA */
.famous-eyebrow { color: var(--rose); border-left-color: var(--rose); letter-spacing: 0.22em; }
.famous-title {
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--burgundy-deep);
}
.famous-sub { font-family: var(--font-italic); font-weight: 300; font-style: italic; color: var(--burgundy-mid); }
.famous-name { font-family: var(--font); font-weight: 900; letter-spacing: 0.01em; }
.famous-role { font-family: var(--font-italic); font-style: italic; font-weight: 300; color: var(--burgundy-mid); }
.famous-cta-btn {
  background: var(--burgundy-deep);
  color: var(--cream);
  letter-spacing: 0.02em;
}
.famous-cta-btn:hover { background: var(--burgundy-mid); color: var(--cream); }

/* Page hero titles (ethos, over-ons, boeken, gasten, contact, podcast) */
.about-hero-title,
.book-hero-title {
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--burgundy-deep);
}
.about-hero-sub { font-family: var(--font-italic); font-weight: 300; font-style: italic; color: var(--burgundy-mid); }
.about-hero-lead { font-family: var(--font-italic); font-weight: 300; font-style: italic; color: var(--burgundy-mid); font-size: 19px; }

.book-hero-eyebrow { color: var(--rose); border-left-color: var(--rose); letter-spacing: 0.22em; }
.book-hero-sub { font-family: var(--font-italic); font-weight: 300; font-style: italic; color: var(--rose); }
.book-hero-lead { font-family: var(--font); font-weight: 400; }

/* Episode cards — guest naam Lato Black (geen uppercase — leesbaarheid) */
.episode-card-name,
.guest-tile-info h3,
.card3-name,
.host-card-body h3 {
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: 0.005em;
}
.episode-card-role,
.guest-tile-info p,
.card3-role,
.host-card-role { font-family: var(--font-italic); font-weight: 300; font-style: italic; }
.host-card-quote { color: var(--rose); border-left-color: var(--rose); font-family: var(--font-italic); }

/* Episode detail page (episode/<n>.html) */
.episode-header h1 { font-family: var(--font); font-weight: 900; letter-spacing: -0.01em; }
.episode-header-role { font-family: var(--font-italic); font-weight: 300; font-style: italic; }
.hero-badge { font-family: var(--font); background: var(--rose-muted); }
.episode-oneliner { font-family: var(--font-italic); font-weight: 300; font-style: italic; color: var(--rose); font-size: 18px; }

.article-body h2 {
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: -0.005em;
  color: var(--burgundy-deep);
}
.article-body blockquote {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 300;
  border-left: 3px solid var(--rose);
}
.article-body blockquote p { color: var(--burgundy-mid); }
.ep-sidebar-toc h3 { font-family: var(--font); font-weight: 700; letter-spacing: 0.22em; color: var(--rose); }
.ep-sidebar-right h3 { font-family: var(--font); font-weight: 900; letter-spacing: 0.01em; }
.guest-role { font-family: var(--font-italic); font-weight: 300; font-style: italic; }

/* Quote cards — rose accent ipv bordeaux pipe voor consistentie */
.quote-card { border-left: 3px solid var(--rose); }
.quote-card blockquote p { font-family: var(--font-italic); font-weight: 300; font-style: italic; color: var(--burgundy-mid); }
.quote-timestamp { color: var(--rose); font-family: var(--font); font-weight: 700; }

/* Transcript summary/details */
.transcript-summary-label { color: var(--burgundy-deep); }
.transcript-summary::before { color: var(--rose); }
.transcript-heading {
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--burgundy-deep);
}

/* Footer — burgundy deep */
.footer {
  background: var(--burgundy-deep);
  color: var(--cream);
}
.footer a { color: var(--cream); }
.footer a:hover { color: var(--rose); }
.footer-tagline { color: rgba(245, 239, 230, 0.72); }
.footer-col-text { color: rgba(245, 239, 230, 0.78); }
.footer-links a { color: rgba(245, 239, 230, 0.82); }
.footer-disclaimer { color: rgba(245, 239, 230, 0.55); }
.footer-copy { color: rgba(245, 239, 230, 0.55); }

/* Tags / tag-clouds */
.tag { font-family: var(--font); font-weight: 700; letter-spacing: 0.08em; }
.tag:hover { background: var(--rose); color: var(--cream); border-color: var(--rose); }

/* Contact card sur la pagina contact */
.contact-card { border-left: 3px solid var(--rose); }
.contact-card h3 { font-family: var(--font); font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; font-size: 11px; color: var(--rose); }
.contact-social-link strong { font-family: var(--font); font-weight: 900; letter-spacing: 0.02em; }
.vzw-details dt { font-family: var(--font); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 12px; color: var(--burgundy-deep); }

/* Featured guests tekstblok (gasten) — volg rose-op-burgundy patroon */
.featured-cat { color: var(--rose); letter-spacing: 0.22em; font-family: var(--font); font-weight: 700; }
.featured-list a strong,
.featured-list li strong { font-family: var(--font); font-weight: 700; }

/* Chronological guest list */
.guest-chrono-ep { color: var(--rose); font-family: var(--font); font-weight: 700; }
.guest-chrono-name { font-family: var(--font); font-weight: 700; }
.guest-chrono-role { font-family: var(--font-italic); font-weight: 300; font-style: italic; }

/* Highlight color in hover + selection */
::selection { background: var(--rose); color: var(--cream); }
a:hover { color: var(--burgundy-deep); }

/* ══════════════════════════════════════════════════════════════════
 *  BULLET-LISTS — uniforme rose dash stijl (overal op de site)
 *  Toegepast op article-body, sidebar TOC, book bullets, hero topics,
 *  article-body ul, footer lijsten, vzw-details.
 *  ══════════════════════════════════════════════════════════════════ */
.article-body ul,
.article-body ol,
.ep-sidebar-toc ul,
.hero-topics,
.book-bullets,
.md-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
}

.article-body li,
.ep-sidebar-toc li,
.hero-topics li,
.book-bullets li,
.md-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-900);
}

.article-body li::before,
.ep-sidebar-toc li::before,
.hero-topics li::before,
.book-bullets li::before,
.md-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 2px;
  background: var(--rose);
}

/* TOC-sidebar — compacter + uppercase links */
.ep-sidebar-toc li { padding: 4px 0 4px 18px; font-size: 13px; }
.ep-sidebar-toc li::before { top: 11px; width: 8px; }
.ep-sidebar-toc li a { color: var(--burgundy-mid); font-family: var(--font); font-weight: 400; }
.ep-sidebar-toc li a:hover { color: var(--rose); }

/* Hero topics (homepage TOC uit hero-center) — kleine variant */
.hero-topics li { padding: 2px 0 2px 14px; font-size: 13px; }
.hero-topics li::before { top: 10px; width: 7px; height: 1.5px; }

/* Book bullets — iets ruimer */
.book-bullets li { font-size: 16px; padding: 6px 0 6px 22px; }

/* Verwijder de oude • bullets die we vervangen */
.hero-topics li::marker,
.book-bullets li::marker,
.ep-sidebar-toc li::marker { content: ""; }

/* Article body lijsten — extra ruimte boven/onder voor lees-ritme */
.article-body ul { margin: 18px 0 24px; }
.article-body li { padding: 8px 0 8px 22px; font-family: var(--font); }
.article-body li a { color: var(--burgundy-deep); font-weight: 600; border-bottom: 1px solid transparent; }
.article-body li a:hover { border-bottom-color: var(--rose); color: var(--rose); }

/* Mediakit bestaande dash-stijl blijft gescoped (.mk-pack-list) en conflicteert niet */

/* ── Button icons — strakke SVG glyphs in currentColor ───────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; }
.btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: -2px;
}
.btn-icon-sm { width: 14px; height: 14px; }
.btn path, .btn line, .btn circle { transition: fill 0.15s, stroke 0.15s; }

/* Hardening — SVG icons altijd op 16px (cache-miss safety net) */
.btn > svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn > svg.btn-icon-sm { width: 14px; height: 14px; }

/* Article-lead H1 (voor summary-markdown met `# Titel`) */
.article-lead-h1 {
  font-family: var(--font);
  font-weight: 900;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--burgundy-deep);
  margin: 4px 0 24px;
  text-transform: none;
}

/* ── YouTube timestamp pill in article h2 (pre-rebrand stijl terug) ── */
.article-body h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
.article-body h2 a.yt-ts {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.02em;
  background: #c00;
  color: #fff;
  padding: 4px 8px;
  border-radius: 3px;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  transition: background 0.15s ease;
  vertical-align: middle;
  white-space: nowrap;
}
.article-body h2 a.yt-ts:hover { background: #a00; color: #fff; }

/* ── Eyebrows/kickers: uniforme rose underline stijl (no pipe) ──────
 * Overschrijft de oude border-left + padding-left combinaties op
 * alle content-eyebrows, zodat titel + body + link op dezelfde
 * linker-lijn staan. Pipe blijft alleen op .section-header (sectie-
 * divider, dat is een ander niveau).                                */
.famous-eyebrow,
.book-divider-eyebrow,
.book-hero-eyebrow,
.hero-left-heading {
  border-left: none !important;
  padding-left: 0 !important;
  display: inline-block;
  padding-bottom: 8px !important;
  border-bottom: 2px solid var(--rose);
  margin-bottom: 14px;
}
/* hero-left-heading is een H2 met speciale behoefte (niet te breed) */
.hero-left-heading {
  padding-bottom: 6px !important;
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   NIEUWSBRIEF — sidebar, full-width banner, footer, modal
   ═══════════════════════════════════════════════════════════════ */

.hero-sidebar-newsletter-desc {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0 0 10px;
}

/* Dual card CTA + teasers: klein knoppen, teasers direct onder CTA zonder extra sectie */
.dual-card-cta { margin-top: 12px; flex-wrap: wrap; gap: 6px; }
.dual-card-cta .btn { font-size: 12px; padding: 6px 12px; }
.dual-card-teasers {
  margin-top: 16px;
  padding-top: 4px;
  border-top: 1px solid var(--gray-200);
}
.dual-card-teasers .dual-teaser-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  text-decoration: none;
}
.dual-card-teasers .dual-teaser-item:last-child { border-bottom: none; }
.dual-card-teasers .qg-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gray-900);
  flex: 1;
}
.dual-card-teasers .qg-ts {
  font-size: 12px;
  font-weight: 700;
  color: var(--bordeaux);
  white-space: nowrap;
  flex-shrink: 0;
}
.dual-card-teasers .dual-teaser-item:hover .qg-text { color: var(--bordeaux); }

/* Nieuwsbrief compact strook — zelfde bordeaux gradient als book-divider, kleiner,
   tekst links + CTA rechts, op mobile onder elkaar. */
.newsletter-compact-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
  color: #fff;
}
.newsletter-compact-body { flex: 1 1 auto; min-width: 0; }
.newsletter-compact-body .book-divider-eyebrow {
  color: #e8a8b8;
  border-left-color: #e8a8b8;
  margin-bottom: 6px;
}
.newsletter-compact-text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  margin: 0;
  max-width: 720px;
}
.newsletter-compact-cta {
  flex: 0 0 auto;
  background: #fff;
  color: var(--bordeaux);
  border: 0;
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.newsletter-compact-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

@media (max-width: 640px) {
  .newsletter-compact-inner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 16px 0; }
  .newsletter-compact-cta { width: 100%; text-align: center; }
}

/* Footer nieuwsbrief knop — op donkere burgundy */
.footer-newsletter-btn {
  align-self: flex-start;
  background: var(--rose);
  color: var(--cream);
  border: none;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, transform 0.15s ease;
  margin-top: 4px;
}
.footer-newsletter-btn:hover {
  background: var(--rose-muted);
  transform: translateY(-1px);
}

/* Modal */
.nl-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.nl-modal[hidden] { display: none; }
.nl-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 10, 18, 0.72);
  backdrop-filter: blur(2px);
}
.nl-modal-panel {
  position: relative;
  background: #fff;
  border-radius: 6px;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  animation: nlModalIn 0.22s ease-out;
}
@keyframes nlModalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.nl-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--gray-500);
  cursor: pointer;
  padding: 4px 8px;
  z-index: 2;
}
.nl-modal-close:hover { color: var(--bordeaux); }
.nl-modal-body { padding: 36px 32px 32px; }
.nl-modal-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bordeaux);
  border-left: 3px solid var(--bordeaux);
  padding-left: 10px;
  margin-bottom: 12px;
}
.nl-modal-title {
  font-family: 'Poppins', 'Lato', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
  margin: 0 0 12px;
}
.nl-modal-intro {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0 0 22px;
}

.nl-form { display: flex; flex-direction: column; gap: 18px; }
.nl-field { display: flex; flex-direction: column; gap: 6px; }
.nl-field-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-700);
}
.nl-field input[type="email"],
.nl-field input[type="text"] {
  font-family: inherit;
  font-size: 15px;
  padding: 11px 13px;
  border: 1px solid var(--gray-300, #d4d4d4);
  border-radius: 4px;
  background: #fff;
}
.nl-field input[type="email"]:focus,
.nl-field input[type="text"]:focus {
  outline: none;
  border-color: var(--bordeaux);
  box-shadow: 0 0 0 3px rgba(83, 13, 39, 0.15);
}

.nl-frequency { border: 0; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.nl-frequency legend { padding: 0; margin-bottom: 8px; }
.nl-radio {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--gray-300, #d4d4d4);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.nl-radio:hover { border-color: var(--bordeaux); background: rgba(83, 13, 39, 0.03); }
.nl-radio input { margin-top: 3px; accent-color: var(--bordeaux); }
.nl-radio strong { display: block; font-size: 14px; color: #111; font-weight: 700; margin-bottom: 2px; }
.nl-radio em { display: block; font-style: normal; font-size: 13px; color: var(--gray-600); line-height: 1.45; }
.nl-radio input:checked ~ span strong { color: var(--bordeaux); }
.nl-radio:has(input:checked) { border-color: var(--bordeaux); background: rgba(83, 13, 39, 0.04); }

.nl-hp { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }

.nl-submit {
  background: var(--bordeaux);
  color: #fff;
  border: 0;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease;
}
.nl-submit:hover { background: var(--bordeaux-dark); }
.nl-submit:disabled { opacity: 0.6; cursor: progress; }

.nl-status {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  min-height: 1em;
}
.nl-status.is-success { color: #1a7f3c; font-weight: 600; }
.nl-status.is-error { color: #a8201a; font-weight: 600; }

.nl-fineprint {
  margin: 0;
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.5;
}

@media (max-width: 560px) {
  .nl-modal { padding: 0; align-items: stretch; }
  .nl-modal-panel { max-width: none; max-height: 100vh; border-radius: 0; }
  .nl-modal-body { padding: 54px 22px 32px; }
  .nl-modal-title { font-size: 22px; }
}
