/* ============================================================
   Adventure Diaries — Theme CSS
   v1.0 · May 2026
   ------------------------------------------------------------
   Ported from specs/brand-kit/system/{tokens,styleguide,wireframes}.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&display=swap');

/* ── Semantic tokens (dark ground default — matches brand) ─── */
:root {
  --ad-ink:        #0B0B0B;
  --ad-paper:      #F5F2EC;
  --ad-slate:      #2A2A2A;
  --ad-mist:       #BFBDB6;
  --ad-deep-teal:  #04789A;
  --ad-rose:       #C66179;
  --ad-teal-soft:  #6FB3C7;

  --rule-on-dark:  rgba(245,242,236,0.18);
  --rule-on-dark-soft: rgba(245,242,236,0.10);
  --rule-on-light: rgba(11,11,11,0.12);

  --font-sans:     'Inter', -apple-system, system-ui, 'Helvetica Neue', sans-serif;
  --font-display:  'Fraunces', Georgia, serif;
  --font-mono:     ui-monospace, 'SF Mono', Menlo, monospace;

  --gutter-page:    clamp(24px, 6vw, 96px);
  --gutter-section: clamp(48px, 10vw, 160px);
  --measure:        62ch;
  --measure-narrow: 42ch;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 160ms;
  --dur-base: 260ms;
  --dur-slow: 520ms;

  --grad-protect: linear-gradient(180deg,
                    transparent 0%,
                    rgba(11,11,11,0) 35%,
                    rgba(11,11,11,0.55) 75%,
                    rgba(11,11,11,0.9) 100%);
}

/* ── Base ────────────────────────────────────────────────── */
html {
  background: var(--ad-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  background: var(--ad-ink);
  color: var(--ad-paper);
}

/* Sentence-case discipline */
h1, h2, h3, h4, h5, h6 { text-transform: none; text-wrap: balance; }

/* Fraunces italic accent inside any heading */
h1 em, h2 em, h3 em, h4 em,
.wp-block-post-title em, .wp-block-heading em,
.entry-title em, .ad-h1 em, .ad-display em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--ad-rose);
  letter-spacing: -0.02em;
}
.has-teal-accent em { color: var(--ad-teal-soft); }

/* ── Editorial scale (utility classes) ──────────────────── */
.ad-display { font-size: clamp(56px, 8vw, 128px); line-height: 0.96; letter-spacing: -0.035em; font-weight: 800; text-wrap: balance; }
.ad-h1      { font-size: clamp(40px, 5vw, 72px);  line-height: 1.02; letter-spacing: -0.02em;  font-weight: 700; text-wrap: balance; }
.ad-h2      { font-size: clamp(28px, 3vw, 44px);  line-height: 1.15; letter-spacing: -0.015em; font-weight: 600; text-wrap: balance; }
.ad-h3      { font-size: 22px; line-height: 1.15; letter-spacing: -0.01em; font-weight: 600; }
.ad-lead    { font-size: 20px; line-height: 1.45; color: rgba(245,242,236,0.72); max-width: var(--measure-narrow); text-wrap: pretty; }
.ad-body    { font-size: 16px; line-height: 1.55; max-width: var(--measure); }
.ad-caption { font-size: 12px; line-height: 1.4; color: rgba(245,242,236,0.42); }
.ad-serif   { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ── Eyebrow with leading dot ───────────────────────────── */
.ad-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.55);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.ad-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ad-rose);
  display: inline-block;
  flex-shrink: 0;
}
.ad-eyebrow.ad-eyebrow--no-dot::before  { display: none; }
.ad-eyebrow.ad-eyebrow--teal-dot::before { background: var(--ad-deep-teal); }
.ad-eyebrow.ad-eyebrow--rose-dot::before { background: var(--ad-rose); }

/* ── Section-head pattern (1fr / 2fr grid w/ section number) ─ */
.ad-section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.ad-section-head .num {
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.42);
  font-weight: 500;
}
.ad-section-head .num span { color: var(--ad-deep-teal); }
.ad-section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.ad-section-head .lead {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(245,242,236,0.72);
  max-width: 56ch;
  margin-top: 16px;
}
@media (max-width: 880px) {
  .ad-section-head { grid-template-columns: 1fr; gap: 16px; }
}

/* ── Site Header / Nav ──────────────────────────────────── */
.wp-block-template-part header.wp-block-group {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,11,11,0.75);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid var(--rule-on-dark) !important;
}

.ad-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.ad-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ad-paper);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.ad-nav__mark {
  width: 40px;
  height: 40px;
  display: inline-block;
  object-fit: contain;
  border-radius: 3px;
}
.ad-nav__title { color: var(--ad-paper); }
.ad-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.ad-nav__links a {
  color: rgba(245,242,236,0.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--dur-fast) var(--ease-out);
}
.ad-nav__links a:hover { color: var(--ad-paper); }
.ad-nav__pods { display: inline-flex; align-items: center; gap: 10px; }
.ad-nav__pod { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; opacity: 0.92; transition: opacity .15s ease, transform .15s ease; }
.ad-nav__pod:hover { opacity: 1; transform: translateY(-1px); }
.ad-nav__pod svg { width: 26px; height: 26px; display: block; }
.ad-nav__cta {
  color: var(--ad-paper) !important;
  padding: 8px 14px;
  border: 1px solid var(--rule-on-dark);
  text-transform: none !important;
  letter-spacing: -0.005em !important;
}
.ad-nav__cta:hover {
  background: rgba(245,242,236,0.06);
  border-color: var(--ad-paper);
}
@media (max-width: 768px) {
  .ad-nav { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ad-nav__links { gap: 20px; flex-wrap: wrap; }
}

/* ── Hero pattern (radial gradient atmosphere) ──────────── */
.ad-hero {
  position: relative;
  overflow: hidden;
  background: var(--ad-ink);
  color: var(--ad-paper);
}
.ad-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 75% 20%, rgba(198,97,121,0.18), transparent 60%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(4,120,154,0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.ad-hero > * { position: relative; z-index: 1; }

/* Allow hero treatment on any group block by adding has-hero-bg class */
.has-hero-bg {
  position: relative;
  overflow: hidden;
}
.has-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 75% 20%, rgba(198,97,121,0.18), transparent 60%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(4,120,154,0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.has-hero-bg > * { position: relative; z-index: 1; }

/* ── Hero meta strip (footer of hero) ───────────────────── */
.ad-hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--rule-on-dark);
  font-size: 13px;
  color: rgba(245,242,236,0.65);
}
.ad-hero-meta > div { display: flex; flex-direction: column; gap: 4px; }
.ad-hero-meta .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.42);
  font-weight: 600;
}
.ad-hero-meta .value {
  color: var(--ad-paper);
  font-weight: 500;
  font-size: 14px;
}

/* ── Principles strip (3-col w/ vertical rules) ─────────── */
.ad-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-on-dark);
  margin-top: 96px;
}
.ad-principles > div {
  padding: 48px 0 0;
  border-right: 1px solid var(--rule-on-dark);
}
.ad-principles > div:last-child { border-right: 0; }
.ad-principles > div:not(:first-child) { padding-left: 32px; }
.ad-principles .num {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(245,242,236,0.4);
  font-weight: 600;
}
.ad-principles h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 600;
  margin: 12px 0 12px;
  text-wrap: balance;
  max-width: 14ch;
  color: var(--ad-paper);
}
.ad-principles p {
  font-size: 14px;
  color: rgba(245,242,236,0.65);
  line-height: 1.55;
  max-width: 36ch;
}
@media (max-width: 880px) {
  .ad-principles { grid-template-columns: 1fr; }
  .ad-principles > div { border-right: 0; border-bottom: 1px solid var(--rule-on-dark); padding: 32px 0; }
  .ad-principles > div:not(:first-child) { padding-left: 0; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.wp-element-button, .wp-block-button__link {
  border-radius: 0 !important;
  letter-spacing: -0.005em;
  font-weight: 500;
  font-size: 14px;
  padding: 14px 22px;
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: var(--ad-paper) !important;
  color: var(--ad-ink) !important;
  border: 1px solid var(--ad-paper) !important;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  background: var(--ad-deep-teal) !important;
  border-color: var(--ad-deep-teal) !important;
  color: var(--ad-paper) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent !important;
  border: 1px solid var(--rule-on-dark) !important;
  color: var(--ad-paper) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: var(--ad-paper) !important;
  background: rgba(245,242,236,0.06) !important;
}

/* ── Pills ───────────────────────────────────────────────── */
.ad-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--rule-on-dark);
  color: rgba(245,242,236,0.72);
}
.ad-pill--live { color: var(--ad-rose); border-color: rgba(198,97,121,0.3); }
.ad-pill--live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ad-rose); display: inline-block; }
.ad-pill--new  { background: var(--ad-deep-teal); color: var(--ad-paper); border-color: transparent; }

/* ── Stat block ──────────────────────────────────────────── */
.ad-stat-block {
  padding: 24px 0;
  border-top: 1px solid var(--rule-on-dark);
  border-bottom: 1px solid var(--rule-on-dark);
}
.ad-stat-block .num {
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ad-paper);
}
.ad-stat-block .num em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ad-deep-teal);
  font-weight: 500;
}
.ad-stat-block .caption {
  font-size: 14px;
  color: rgba(245,242,236,0.72);
  margin-top: 12px;
  max-width: 32ch;
  line-height: 1.4;
}

/* ── Lower third ─────────────────────────────────────────── */
.ad-lower-third {
  background: var(--ad-ink);
  color: var(--ad-paper);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--ad-rose);
}
.ad-lower-third .role {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.55);
  font-weight: 600;
}
.ad-lower-third .name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
}

/* ── Episode tile (used in queries / archive / latest) ──── */
.ad-card {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ad-card .ad-card__cover,
.ad-card .wp-block-post-featured-image {
  display: block;
  aspect-ratio: 16/9;
  background: var(--ad-ink);
  position: relative;
  overflow: hidden;
  margin: 0;
}
.ad-card .wp-block-post-featured-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-protect);
  pointer-events: none;
}
/* isLink featured images render figure > a > img; the inline <a> breaks the
   height chain, so force it to fill the aspect-ratio box (keeps cards uniform). */
.ad-card .wp-block-post-featured-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.ad-card .wp-block-post-featured-image img,
.ad-card .ad-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.ad-card .wp-block-post-date,
.ad-card .ad-card__date {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.42);
  font-weight: 600;
  margin: 0;
}
.ad-card .wp-block-post-date a { color: inherit; text-decoration: none; }
.ad-card .wp-block-post-title,
.ad-card .ad-card__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
  color: var(--ad-paper);
}
.ad-card .wp-block-post-title a { color: inherit; text-decoration: none; transition: color var(--dur-fast); }
.ad-card .wp-block-post-title a:hover { color: var(--ad-rose); }
.ad-card .wp-block-post-excerpt,
.ad-card .ad-card__lede {
  font-size: 14px;
  color: rgba(245,242,236,0.65);
  line-height: 1.5;
  margin: 0;
}
.ad-card .wp-block-post-excerpt__more-link {
  color: var(--ad-teal-soft);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}

/* ── Article body (single post + pages) ─────────────────── */
.entry-content,
.wp-block-post-content {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(245,242,236,0.85);
}
/* All direct children of post-content fill the container width — no inner max-width centering */
.entry-content > *,
.wp-block-post-content > * { max-width: none; }
.entry-content h2,
.wp-block-post-content h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 1.8em 0 0.5em;
  color: var(--ad-paper);
  text-wrap: balance;
}
.entry-content h3,
.wp-block-post-content h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 1.6em 0 0.4em;
  color: var(--ad-paper);
}
.entry-content strong,
.wp-block-post-content strong { color: var(--ad-paper); }
.entry-content ul,
.wp-block-post-content ul { padding-left: 1.4em; }
.entry-content li,
.wp-block-post-content li { margin-bottom: 0.4em; }
.entry-content a,
.wp-block-post-content a {
  color: var(--ad-teal-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
/* Pull quotes — display font, larger, left rule */
.entry-content blockquote,
.wp-block-post-content blockquote {
  font-family: var(--font-display);
  font-size: clamp(23px, 2.5vw, 31px);
  line-height: 1.3;
  font-style: italic;
  font-weight: 500;
  border-left: 3px solid var(--ad-deep-teal);
  padding-left: 28px;
  margin: 2em 0;
}
.entry-content blockquote p,
.wp-block-post-content blockquote p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}
.entry-content blockquote cite,
.wp-block-post-content blockquote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(11,11,11,0.5);
}

/* ── Sticky player chrome ───────────────────────────────── */
.ad-player {
  background: rgba(11,11,11,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--rule-on-dark);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 2px;
}
.ad-player .play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ad-rose);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ad-paper);
  font-size: 14px;
  cursor: pointer;
}
.ad-player .meta { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ad-player .title { font-size: 14px; font-weight: 600; color: var(--ad-paper); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ad-player .sub { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,242,236,0.55); font-weight: 600; }
.ad-player .time { font-family: var(--font-mono); font-size: 12px; color: rgba(245,242,236,0.55); flex-shrink: 0; }

/* ── Newsletter band ────────────────────────────────────── */
.ad-newsletter {
  background: #050505;
  border-top: 1px solid var(--rule-on-dark);
  border-bottom: 1px solid var(--rule-on-dark);
}

/* ── Article meta strip (multi-cell credit row) ─────────── */
.ad-meta-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  border-top: 1px solid var(--rule-on-dark);
  border-bottom: 1px solid var(--rule-on-dark);
  padding: 32px 0;
  margin: 64px 0;
}
.ad-meta-strip__cell .label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.42);
  margin: 0 0 8px;
  display: block;
}
.ad-meta-strip__cell .value {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ad-paper);
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.4;
}

/* ── Numbered cards (editorial 01/02/03 row) ────────────── */
.ad-numbered-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 64px;
  border-top: 1px solid var(--rule-on-dark);
  padding-top: 48px;
  margin-top: 64px;
}
.ad-numbered-row__card .num {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(245,242,236,0.42);
  margin: 0 0 16px;
}
.ad-numbered-row__card h3 {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ad-paper);
  margin: 0 0 16px;
}
.ad-numbered-row__card p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(245,242,236,0.65);
  margin: 0;
  max-width: 36ch;
}

/* ── Listen-on row ──────────────────────────────────────── */
.ad-listen-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.ad-listen-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--rule-on-dark);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ad-paper);
  transition: all var(--dur-fast) var(--ease-out);
}
.ad-listen-row a:hover {
  border-color: var(--ad-paper);
  background: rgba(245,242,236,0.04);
}

/* ── Hairline rule fix for WP separator ────────────────── */
hr.wp-block-separator { border-color: var(--rule-on-dark); }

/* ── Footer ─────────────────────────────────────────────── */
.wp-block-template-part footer.wp-block-group {
  background: var(--ad-ink) !important;
  border-top: 1px solid var(--rule-on-dark) !important;
  color: rgba(245,242,236,0.65);
}

/* ════════════════════════════════════════════════════════
   LIGHT GROUND (paper) — reading sections
   Apply to any group block with the Paper background.
   This is the canonical brand reading surface.
   ════════════════════════════════════════════════════════ */

.has-paper-background-color {
  color: var(--ad-slate);
}

/* Headings on paper → ink */
.has-paper-background-color h1,
.has-paper-background-color h2,
.has-paper-background-color h3,
.has-paper-background-color h4,
.has-paper-background-color h5,
.has-paper-background-color h6,
.has-paper-background-color .wp-block-heading,
.has-paper-background-color .wp-block-post-title,
.has-paper-background-color .wp-block-post-title a {
  color: var(--ad-ink);
}

/* Fraunces italic accent on paper → rose still */
.has-paper-background-color h1 em,
.has-paper-background-color h2 em,
.has-paper-background-color h3 em,
.has-paper-background-color .wp-block-heading em {
  color: var(--ad-rose);
}

/* Body / paragraphs on paper → slate */
.has-paper-background-color p,
.has-paper-background-color li,
.has-paper-background-color blockquote {
  color: var(--ad-slate);
}
.has-paper-background-color strong {
  color: var(--ad-ink);
}

/* Eyebrow on paper → muted ink */
.has-paper-background-color .ad-eyebrow {
  color: rgba(11,11,11,0.55);
}
.has-paper-background-color .ad-eyebrow::before {
  background: var(--ad-rose);
}
.has-paper-background-color .ad-eyebrow.ad-eyebrow--teal-dot::before {
  background: var(--ad-deep-teal);
}

/* Section head on paper */
.has-paper-background-color .ad-section-head .num {
  color: rgba(11,11,11,0.45);
}
.has-paper-background-color .ad-section-head .num span { color: var(--ad-deep-teal); }
.has-paper-background-color .ad-section-head .lead {
  color: var(--ad-slate);
}

/* Lead / lede on paper */
.has-paper-background-color .ad-lead {
  color: var(--ad-slate);
}

/* Links on paper → teal underline */
.has-paper-background-color a {
  color: var(--ad-deep-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.has-paper-background-color a:hover {
  color: var(--ad-ink);
}

/* Article body (post content) on paper */
.has-paper-background-color .entry-content,
.has-paper-background-color .wp-block-post-content {
  color: var(--ad-slate);
  font-size: 17px;
  line-height: 1.65;
}
.has-paper-background-color .entry-content > p,
.has-paper-background-color .wp-block-post-content > p { color: var(--ad-slate); }
.has-paper-background-color .wp-block-post-excerpt {
  color: var(--ad-slate);
}

/* Hairlines on paper */
.has-paper-background-color hr.wp-block-separator {
  border-color: rgba(11,11,11,0.12);
}

/* Buttons on paper — primary becomes ink, outline becomes ink */
.has-paper-background-color .wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: var(--ad-ink) !important;
  color: var(--ad-paper) !important;
  border-color: var(--ad-ink) !important;
}
.has-paper-background-color .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  background: var(--ad-deep-teal) !important;
  border-color: var(--ad-deep-teal) !important;
  color: var(--ad-paper) !important;
}
.has-paper-background-color .wp-block-button.is-style-outline .wp-block-button__link {
  border-color: rgba(11,11,11,0.18) !important;
  color: var(--ad-ink) !important;
}
.has-paper-background-color .wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: var(--ad-ink) !important;
  background: rgba(11,11,11,0.04) !important;
}

/* Episode cards on paper / paper-soft */
.has-paper-background-color .ad-card .wp-block-post-date,
.has-paper-soft-background-color .ad-card .wp-block-post-date,
.has-paper-background-color .ad-card .ad-card__date,
.has-paper-soft-background-color .ad-card .ad-card__date {
  color: rgba(11,11,11,0.45) !important;
}
.has-paper-background-color .ad-card .wp-block-post-title,
.has-paper-soft-background-color .ad-card .wp-block-post-title,
.has-paper-background-color .ad-card .ad-card__title,
.has-paper-soft-background-color .ad-card .ad-card__title {
  color: var(--ad-ink) !important;
}
.has-paper-background-color .ad-card .wp-block-post-title a,
.has-paper-soft-background-color .ad-card .wp-block-post-title a {
  color: var(--ad-ink) !important;
}
.has-paper-background-color .ad-card .wp-block-post-title a:hover,
.has-paper-soft-background-color .ad-card .wp-block-post-title a:hover {
  color: var(--ad-rose) !important;
}
.has-paper-background-color .ad-card .wp-block-post-excerpt,
.has-paper-soft-background-color .ad-card .wp-block-post-excerpt,
.has-paper-background-color .ad-card .ad-card__lede,
.has-paper-soft-background-color .ad-card .ad-card__lede {
  color: var(--ad-slate) !important;
}
.has-paper-background-color .ad-card .wp-block-post-excerpt__more-link,
.has-paper-soft-background-color .ad-card .wp-block-post-excerpt__more-link {
  color: var(--ad-deep-teal) !important;
}
/* Paper-soft section text color cascade */
.has-paper-soft-background-color { color: var(--ad-slate); }
.has-paper-soft-background-color h1,
.has-paper-soft-background-color h2,
.has-paper-soft-background-color h3,
.has-paper-soft-background-color h4,
.has-paper-soft-background-color .wp-block-heading,
.has-paper-soft-background-color .ad-section-head h2 { color: var(--ad-ink); }
.has-paper-soft-background-color .ad-section-head .num { color: rgba(11,11,11,0.45); }
.has-paper-soft-background-color .ad-section-head .num span { color: var(--ad-deep-teal); }
.has-paper-soft-background-color h2 em,
.has-paper-soft-background-color h3 em { color: var(--ad-rose); }
.has-paper-soft-background-color p { color: var(--ad-slate); }
.has-paper-soft-background-color .ad-eyebrow { color: rgba(11,11,11,0.55); }

/* Voice-grid style "do/don't" comparison lists on paper */
.has-paper-background-color .ad-voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .has-paper-background-color .ad-voice-grid { grid-template-columns: 1fr; }
}
.has-paper-background-color .ad-voice-grid h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(11,11,11,0.12);
}
.has-paper-background-color .ad-voice-grid h4.do { color: var(--ad-deep-teal); }
.has-paper-background-color .ad-voice-grid h4.dont { color: var(--ad-rose); }

/* ════════════════════════════════════════════════════════
   BUTTONS — per COMPONENTS.md § 1
   ════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  font-family: var(--font-sans);
  border: 1px solid;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  border-radius: 0;
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.btn .arrow { font-size: 14px; line-height: 1; transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .arrow { transform: translate(2px, -2px); }
.btn-primary {
  background: var(--ad-ink);
  color: var(--ad-paper);
  border-color: var(--ad-ink);
}
.btn-primary:hover {
  background: var(--ad-deep-teal);
  border-color: var(--ad-deep-teal);
  color: var(--ad-paper);
}
.btn-ghost {
  background: transparent;
  color: var(--ad-paper);
  border-color: var(--rule-on-dark);
}
.btn-ghost:hover {
  background: var(--ad-paper);
  color: var(--ad-ink);
  border-color: var(--ad-paper);
}
.btn-text {
  background: transparent;
  border: 0;
  padding: 6px 0;
  color: var(--ad-ink);
  border-bottom: 1px solid var(--ad-ink);
}
.btn-text:hover { color: var(--ad-deep-teal); border-color: var(--ad-deep-teal); }
.has-paper-background-color .btn-ghost {
  color: var(--ad-ink);
  border-color: var(--ad-ink);
}
.has-paper-background-color .btn-ghost:hover {
  background: var(--ad-ink);
  color: var(--ad-paper);
}

/* ════════════════════════════════════════════════════════
   HOME PAGE COMPONENTS (per PAGE_SPECS § 1)
   ════════════════════════════════════════════════════════ */

/* Hero — full-bleed image + protection gradient */
.ad-home-hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: var(--ad-ink);
  color: var(--ad-paper);
  display: flex;
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 96px);
}
.ad-home-hero__inner--capture { max-width: 760px; }
.ad-home-hero__inner--capture .ad-display { max-width: 16ch; margin: 20px 0 20px; }
.ad-home-hero__capture { max-width: 600px; margin: 0; }
.ad-home-hero__capture .ad-kit-form { margin: 0; }
.ad-home-hero__capture-small { font-size: 13px; color: rgba(245,242,236,0.6); margin: 16px 0 0; }
.ad-home-hero__alt { margin: 30px 0 0; }
.ad-home-hero__alt a { color: rgba(245,242,236,0.85); text-decoration: none; font-size: 15px; border-bottom: 1px solid rgba(245,242,236,0.32); padding-bottom: 3px; transition: color .2s, border-color .2s; }
.ad-home-hero__alt a:hover { color: var(--ad-paper); border-color: var(--ad-paper); }
.ad-home-hero__alt a .arrow { border: 0; }
.ad-home-hero__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* Dark, on-brand treatment — peaks read as a clear silhouette emerging
     from black (brightness/contrast lifted so the mountains aren't crushed). */
  filter: saturate(0.7) brightness(0.72) contrast(1.18);
  z-index: 0;
}
.ad-home-hero__grad {
  position: absolute;
  inset: 0;
  /* Ink veil: light at the top so the peaks show through, near-solid
     toward the bottom where the headline + capture form sit. */
  background: linear-gradient(180deg, rgba(11,11,11,0.28) 0%, rgba(11,11,11,0.58) 46%, rgba(11,11,11,0.92) 100%);
  z-index: 1;
}
.ad-home-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.ad-home-hero__inner .ad-display {
  color: var(--ad-paper);
  max-width: 18ch;
  margin: 24px 0 24px;
}
.ad-home-hero__lead {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: rgba(245,242,236,0.78);
  max-width: 52ch;
  margin: 0 0 40px;
}
.ad-home-hero__cta { margin-bottom: 48px; }
.ad-home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 64px);
  padding-top: 28px;
  border-top: 1px solid var(--rule-on-dark);
  font-size: 12px;
  color: rgba(245,242,236,0.6);
}
.ad-home-hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ad-home-hero__meta .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.42);
  font-weight: 600;
}
.ad-home-hero__meta .value {
  color: var(--ad-paper);
  font-weight: 500;
  font-size: 13px;
}

/* Section-head — paper variant */
.ad-section-head--paper .num { color: rgba(11,11,11,0.45) !important; }
.ad-section-head--paper .num span { color: var(--ad-deep-teal); }
.ad-section-head--paper h2 { color: var(--ad-ink); }
.ad-section-head--paper .lead { color: var(--ad-slate); }

/* Latest episode strip — horizontal card */
.ad-latest-strip {
  display: grid !important;
  grid-template-columns: 5fr 4fr;
  gap: 48px !important;
  align-items: center;
}
@media (max-width: 880px) {
  .ad-latest-strip { grid-template-columns: 1fr; }
}
.ad-latest-strip__thumb {
  margin: 0 !important;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.ad-latest-strip__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ad-latest-strip__body {
  display: flex !important;
  flex-direction: column;
  gap: 16px !important;
  background: transparent !important;
  padding: 0 !important;
}
.ad-latest-strip__body .wp-block-post-date {
  color: rgba(11,11,11,0.45) !important;
}
.ad-latest-strip__body .wp-block-post-title {
  font-size: clamp(24px, 2.5vw, 36px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.15 !important;
  margin: 0 !important;
  color: var(--ad-ink);
}
.ad-latest-strip__body .wp-block-post-title a { color: var(--ad-ink); text-decoration: none; }
.ad-latest-strip__body .wp-block-post-title a:hover { color: var(--ad-deep-teal); }
.ad-latest-strip__body .wp-block-post-excerpt {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ad-slate);
  margin: 0;
}

/* About sliver */
.ad-about-sliver {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 880px) { .ad-about-sliver { grid-template-columns: 1fr; } }
.ad-about-sliver__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ad-deep-teal);
  margin: 0;
  max-width: 16ch;
}
.ad-about-sliver__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ad-about-sliver__body p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ad-slate);
  margin: 0;
  max-width: 56ch;
}

/* Newsletter inline (Kit form) */
.ad-newsletter-inline {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.ad-newsletter-inline h2 {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 8px 0 4px;
  color: var(--ad-paper);
}
.ad-newsletter-inline .ad-lead {
  color: rgba(245,242,236,0.72);
  max-width: 48ch;
  margin: 0 auto;
}
.ad-kit-form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 480px;
  margin: 16px auto 0;
}
.ad-kit-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  background: var(--ad-paper);
  color: var(--ad-ink);
  border: 1px solid var(--ad-paper);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
}
.ad-kit-form input[type="email"]:focus {
  outline: 2px solid var(--ad-teal-soft);
  outline-offset: 2px;
}
.ad-kit-form button { flex-shrink: 0; }
.ad-newsletter-inline__small {
  font-size: 12px;
  color: rgba(245,242,236,0.42);
  margin-top: 8px;
}
@media (max-width: 640px) {
  .ad-kit-form { flex-direction: column; }
}
.ad-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ════════════════════════════════════════════════════════
   GLOBAL NEWSLETTER BAND (Kit form, site-wide above footer)
   ════════════════════════════════════════════════════════ */
.ad-newsletter-band {
  background: #050505 !important;
  color: var(--ad-paper);
  text-align: center;
}
.ad-newsletter-band__inner {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.ad-newsletter-band__inner .ad-eyebrow {
  color: rgba(245,242,236,0.55);
}
.ad-newsletter-band__title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ad-paper) !important;
  margin: 8px 0 4px;
  text-wrap: balance;
}
.ad-newsletter-band__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--ad-rose);
  letter-spacing: -0.02em;
}
.ad-newsletter-band__lead {
  color: rgba(245,242,236,0.72) !important;
  font-size: 17px;
  line-height: 1.5;
  max-width: 48ch;
  margin: 0 auto;
}
.ad-newsletter-band__small {
  font-size: 12px;
  color: rgba(245,242,236,0.42);
  margin: 8px 0 0;
}

/* ── Kit form — override Kit's defaults with brand styles ── */
.ad-kit-form {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 16px auto 0 !important;
  max-width: 480px !important;
  width: 100%;
  box-shadow: none !important;
}
.ad-kit-form *,
.ad-kit-form * { box-sizing: border-box; }
.ad-kit-form .formkit-background { display: none !important; }
.ad-kit-form .formkit-header,
.ad-kit-form .formkit-subheader,
.ad-kit-form .formkit-guarantee,
.ad-kit-form .formkit-powered-by-convertkit-container,
.ad-kit-form .formkit-powered-by { display: none !important; }
.ad-kit-form .formkit-fields {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 8px;
  margin: 0 !important;
}
.ad-kit-form__row {
  display: flex;
  gap: 8px;
  width: 100%;
}
@media (max-width: 640px) {
  .ad-kit-form__row { flex-direction: column; }
}
.ad-kit-form__input,
.ad-kit-form .formkit-input {
  flex: 1 !important;
  background: var(--ad-paper) !important;
  color: var(--ad-ink) !important;
  border: 1px solid var(--ad-paper) !important;
  border-radius: 2px !important;
  padding: 14px 16px !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  letter-spacing: -0.005em !important;
  margin: 0 !important;
  min-width: 0 !important;
}
.ad-kit-form__input::placeholder,
.ad-kit-form .formkit-input::placeholder {
  color: rgba(11,11,11,0.45) !important;
  opacity: 1 !important;
}
.ad-kit-form__input:focus,
.ad-kit-form .formkit-input:focus {
  outline: 2px solid var(--ad-teal-soft) !important;
  outline-offset: 2px !important;
  border-color: var(--ad-paper) !important;
}
.ad-kit-form__submit,
.ad-kit-form .formkit-submit {
  flex-shrink: 0 !important;
  background: var(--ad-deep-teal) !important;
  color: var(--ad-paper) !important;
  border: 1px solid var(--ad-deep-teal) !important;
  border-radius: 2px !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: -0.005em !important;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out) !important;
  min-height: 48px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
}
.ad-kit-form__submit:hover,
.ad-kit-form .formkit-submit:hover {
  background: var(--ad-ink) !important;
  color: var(--ad-paper) !important;
  border-color: var(--ad-ink) !important;
}
.ad-kit-form__submit > span,
.ad-kit-form .formkit-submit > span {
  padding: 14px 22px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  transition: none !important;
}
.ad-kit-form__submit:hover > span,
.ad-kit-form .formkit-submit:hover > span { background: transparent !important; }
.ad-kit-form__submit .arrow,
.ad-kit-form .formkit-submit .arrow {
  font-size: 14px;
  line-height: 1;
  transition: transform var(--dur-fast) var(--ease-out);
}
.ad-kit-form__submit:hover .arrow,
.ad-kit-form .formkit-submit:hover .arrow { transform: translate(2px, -2px); }
.ad-kit-form .formkit-spinner { display: none !important; }
.ad-kit-form .formkit-alert {
  background: rgba(245,242,236,0.06) !important;
  border: 1px solid var(--rule-on-dark) !important;
  color: var(--ad-paper) !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  margin: 16px 0 0 !important;
}
.ad-kit-form .formkit-alert-success {
  border-color: var(--ad-teal-soft) !important;
  color: var(--ad-paper) !important;
}
.ad-kit-form .formkit-alert-error {
  border-color: var(--ad-rose) !important;
  color: var(--ad-paper) !important;
}

/* Hide the broken/legacy Kit form sections we put in earlier */
.ad-kit-form--paper .formkit-header,
.ad-kit-form--paper .formkit-subheader,
.ad-kit-form--paper .formkit-guarantee { display: none !important; }

/* ════════════════════════════════════════════════════════
   NEWSLETTER PAGE (per PAGE_SPECS § 6)
   ════════════════════════════════════════════════════════ */
.ad-newsletter-page {
  text-align: left;
  max-width: 720px;
}
.ad-newsletter-page h2 {
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 24px 0;
  color: var(--ad-ink);
}
.ad-newsletter-page .ad-lead {
  color: var(--ad-slate);
  max-width: 48ch;
}
.ad-kit-form--paper {
  margin-top: 32px;
}
.ad-kit-form--paper input[type="email"] {
  background: #fff;
  color: var(--ad-ink);
  border: 1px solid var(--ad-ink);
  border-radius: 2px;
}
.ad-newsletter-page__small {
  font-size: 12px;
  color: rgba(11,11,11,0.45);
  margin-top: 12px;
}
.ad-issue-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.ad-issue-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(11,11,11,0.12);
  align-items: baseline;
}
.ad-issue-list li:last-child { border-bottom: 1px solid rgba(11,11,11,0.12); }
@media (max-width: 720px) {
  .ad-issue-list li { grid-template-columns: 1fr; gap: 4px; }
}
.ad-issue-list .date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(11,11,11,0.45);
  text-transform: uppercase;
}
.ad-issue-list .title {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ad-ink);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: color var(--dur-fast) var(--ease-out);
}
.ad-issue-list .title:hover { color: var(--ad-deep-teal); }
.ad-issue-list .teaser {
  font-size: 14px;
  color: var(--ad-slate);
  display: block;
}

/* ════════════════════════════════════════════════════════
   GLOSSARY LIST
   ════════════════════════════════════════════════════════ */
.ad-glossary-list {
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 32px;
}
@media (max-width: 720px) {
  .ad-glossary-list { grid-template-columns: 1fr; }
}
.ad-glossary-list dt {
  font-weight: 600;
  color: var(--ad-ink);
  padding: 12px 0;
  border-top: 1px solid rgba(11,11,11,0.12);
  font-size: 15px;
}
.ad-glossary-list dt em { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.ad-glossary-list dd {
  color: var(--ad-slate);
  padding: 12px 0;
  border-top: 1px solid rgba(11,11,11,0.12);
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .ad-glossary-list dt { border-top: 1px solid rgba(11,11,11,0.12); padding-bottom: 4px; }
  .ad-glossary-list dd { border-top: 0; padding-top: 0; }
}

/* ════════════════════════════════════════════════════════
   ABOUT PAGE (per PAGE_SPECS § 4)
   ════════════════════════════════════════════════════════ */
.ad-about-hero {
  max-width: 720px;
}
.ad-about-hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ad-ink);
  margin: 24px 0 24px;
  max-width: 14ch;
}
.ad-about-hero .ad-lead {
  color: var(--ad-slate);
  max-width: 42ch;
}
.ad-host-portrait {
  margin: 0;
  width: 100%;
}
.ad-host-portrait img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.ad-host-portrait figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(11,11,11,0.55);
  padding: 14px 0;
  margin: 0;
  text-align: right;
}

/* ── About page images ───────────────────────────────────── */
/* Two images side-by-side, spanning the full content width.
   Both source photos are 3:4 portrait, so they share height with no crop. */
.ad-about-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 0 var(--gutter-section);
}
.ad-about-duo__item { margin: 0; }
.ad-about-duo__item img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.ad-about-duo__item figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(11,11,11,0.50);
  padding: 12px 0 0;
  margin: 0;
  text-align: center;
}
@media (max-width: 600px) {
  .ad-about-duo { grid-template-columns: 1fr; gap: 32px; }
}

/* Legacy single-image / floated headshot (kept harmless if referenced) */
.ad-about-hero-img { width: 100%; margin: 0 0 40px; }
.ad-about-hero-img img { width: 100%; height: auto; display: block; }
.ad-about-hero-img figcaption,
.ad-about-headshot figcaption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(11,11,11,0.50);
  padding: 12px 0;
  margin: 0;
  text-align: right;
}
/* Headshot — portrait, right-floated on wide, centred on narrow */
.ad-about-headshot {
  float: right;
  width: 320px;
  margin: 0 0 32px 48px;
  clear: right;
}
.ad-about-headshot img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 720px) {
  .ad-about-headshot {
    float: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 32px;
  }
}
.ad-about-body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1023px) {
  .ad-about-body { grid-template-columns: 1fr; gap: 48px; }
}
.ad-about-body__main {
  min-width: 0;
  max-width: 62ch;
}
.ad-about-body__rail {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.ad-about-body__rail .ad-stat-block {
  border-top: 1px solid rgba(11,11,11,0.18);
  border-bottom: 1px solid rgba(11,11,11,0.18);
  padding: 20px 0;
}
.ad-about-body__rail .ad-stat-block .num {
  font-size: clamp(56px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ad-ink);
  margin: 0;
}
.ad-about-body__rail .ad-stat-block .num em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ad-deep-teal);
  font-weight: 500;
}
.ad-about-body__rail .ad-stat-block .caption {
  font-size: 13px;
  color: var(--ad-slate);
  margin-top: 8px;
  max-width: 28ch;
  line-height: 1.4;
}
.ad-about-body__rail .ad-rail-block {
  border-top: 1px solid rgba(11,11,11,0.18);
  padding-top: 16px;
}
.ad-about-body__rail .ad-rail-list a {
  color: var(--ad-ink);
  border-color: rgba(11,11,11,0.10);
}
.ad-inline-cta {
  text-align: center;
}
.ad-inline-cta__line {
  font-size: clamp(22px, 2vw, 28px);
  color: var(--ad-slate);
  margin: 0 0 16px;
}
.ad-inline-cta__line em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ad-deep-teal);
}

/* ════════════════════════════════════════════════════════
   CONTACT PAGE (per PAGE_SPECS § 9)
   ════════════════════════════════════════════════════════ */
.ad-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 880px) { .ad-contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.ad-contact-grid__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(11,11,11,0.18);
}
.ad-contact-grid__email {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ad-deep-teal);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-out);
}
.ad-contact-grid__email:hover { color: var(--ad-ink); }
.ad-contact-grid__note {
  font-size: 14px;
  color: var(--ad-slate);
  line-height: 1.5;
  margin: 0;
  max-width: 30ch;
}
.ad-contact-signoff {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  color: var(--ad-rose);
  text-align: center;
  margin-top: 80px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════════════════════════════
   SINGLE EPISODE COMPONENTS (per PAGE_SPECS § 3)
   ════════════════════════════════════════════════════════ */

/* Featured image — show the FULL image (no head-cropping), centred on an
   ink letterbox, capped in height. Portrait + landscape both fit whole. */
.ad-feature-img {
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 1080px !important;
  max-height: 72vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--ad-ink);
}
.ad-feature-img img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  display: block;
}

/* Player strip */
.ad-player-strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ad-player-strip__embed {
  border: 1px solid rgba(11,11,11,0.18);
  border-radius: 0;
  overflow: hidden;
  background: var(--ad-ink);
}
.ad-player-strip__embed iframe {
  display: block;
  width: 100%;
  height: 152px;
  border: 0;
}
/* ── Buzzsprout player (injected at top of post content via the_content filter) ── */
.ad-buzzsprout-player {
  margin: 0 0 40px;
  border: 1px solid rgba(11,11,11,0.18);
  background: var(--ad-ink);
  border-radius: 0;
  overflow: hidden;
}
.ad-buzzsprout-player iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* ── Inline Kit newsletter form (injected after post content, before topics footer) ── */
/* Inline newsletter — dark band style, matches the global footer band.
   Lives inside .has-paper-background-color so colours need !important
   to beat the paper-context overrides (same pattern the global band uses). */
.ad-inline-newsletter {
  background: #050505 !important;
  color: var(--ad-paper) !important;
  margin: 72px 0 24px;
  padding: 64px 40px;
  text-align: center;
  border: none;
}
.ad-inline-newsletter .ad-eyebrow {
  color: rgba(245,242,236,0.55) !important;
  margin: 0 0 16px;
}
.ad-inline-newsletter .ad-eyebrow::before {
  background: var(--ad-rose) !important;
}
.ad-inline-newsletter__title {
  /* !important needed — .entry-content h3 rules cascade in here and otherwise
     clamp size to 26px and zero the side margins (forcing left-align). */
  font-size: clamp(32px, 4vw, 52px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.05 !important;
  color: var(--ad-paper) !important;
  margin: 8px auto 12px !important;
  max-width: 12ch !important;     /* forces "Start your / next adventure." two-line wrap */
  text-align: center;
}
.ad-inline-newsletter__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--ad-rose) !important;
  letter-spacing: -0.02em;
}
.ad-inline-newsletter__lead {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(245,242,236,0.72) !important;
  max-width: 48ch;
  margin: 0 auto 24px;
}
.ad-inline-newsletter__small {
  font-size: 12px;
  color: rgba(245,242,236,0.42) !important;
  margin: 12px 0 0;
}

/* Inline Kit form on dark ground — paper-coloured controls like the band */
.ad-kit-form--inline {
  margin: 0 auto !important;
  max-width: 540px !important;
}
.ad-kit-form--inline .ad-kit-form__input,
.ad-kit-form--inline .formkit-input {
  background: var(--ad-paper) !important;
  color: var(--ad-ink) !important;
  border: 1px solid var(--ad-paper) !important;
}
/* Inline submit button inherits the base rose styling — no override needed. */

.ad-player-strip__embed-placeholder {
  border: 1px solid rgba(11,11,11,0.18);
  background: rgba(11,11,11,0.03);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 0;
}
.ad-player-strip__embed-placeholder p {
  font-size: 13px;
  color: rgba(11,11,11,0.55);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}
.ad-player-strip__embed-placeholder code {
  background: rgba(11,11,11,0.08);
  padding: 1px 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  border-radius: 2px;
}
.ad-player-strip__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(11,11,11,0.55);
}
.ad-player-strip__links a {
  color: var(--ad-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ad-ink);
  padding-bottom: 1px;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.ad-player-strip__links a:hover {
  color: var(--ad-deep-teal);
  border-color: var(--ad-deep-teal);
}
.ad-player-strip__share { margin-left: auto; }
.ad-share {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ad-ink);
  color: var(--ad-ink);
  font-family: var(--font-sans);
  font-size: 13px;
  cursor: pointer;
  padding: 0 0 1px;
  font-weight: 500;
}
.ad-share:hover { color: var(--ad-deep-teal); border-color: var(--ad-deep-teal); }

/* Article body — single centered column (no sidebar) */
.ad-episode-footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(11,11,11,0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ad-episode-footer .ad-eyebrow {
  color: rgba(11,11,11,0.55) !important;
}
.ad-rail-block {
  border-top: 1px solid rgba(11,11,11,0.12);
  padding-top: 16px;
}
.ad-rail-block .ad-eyebrow {
  color: rgba(11,11,11,0.55) !important;
  margin-bottom: 12px;
  display: block;
}
.ad-rail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ad-rail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ad-rail-list li { margin: 0; }
.ad-rail-list a {
  display: block;
  font-size: 14px;
  color: var(--ad-ink);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid rgba(11,11,11,0.08);
  transition: color var(--dur-fast) var(--ease-out);
}
.ad-rail-list a:hover { color: var(--ad-deep-teal); }

/* Pills/tags */
.ad-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid rgba(11,11,11,0.18);
  color: rgba(11,11,11,0.7);
}
.ad-pill--live { color: var(--ad-rose); border-color: rgba(198,97,121,0.3); }
.ad-pill--live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ad-rose); display: inline-block; }
.ad-pill--new  { background: var(--ad-deep-teal); color: var(--ad-paper); border-color: transparent; }
.ad-pill--tag  { color: rgba(11,11,11,0.7); }

/* Follow the podcast CTA */
.ad-follow-pod {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ad-follow-pod__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 600;
  color: var(--ad-paper);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 8px 0 20px;
}
.ad-follow-pod__heading em {
  font-style: italic;
}
.ad-follow-pod__lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(245,242,236,0.65);
  margin: 0 auto 44px;
  max-width: 46ch;
}
.ad-follow-pod__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.ad-follow-pod__badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px 14px 14px;
  background: rgba(245,242,236,0.06);
  border: 1px solid rgba(245,242,236,0.18);
  color: var(--ad-paper);
  text-decoration: none;
  min-width: 210px;
  transition: background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
.ad-follow-pod__badge:hover {
  background: rgba(245,242,236,0.12);
  border-color: rgba(245,242,236,0.42);
  color: var(--ad-paper);
  text-decoration: none;
}
.ad-follow-pod__badge-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* Follow-the-podcast CTA injected INTO the news article body. It sits on a dark
   panel but inside .has-paper-background-color / .entry-content, whose cascades
   would otherwise darken the eyebrow and resize the heading + badge icons.
   Re-assert the exact ink-ground component styling. */
.ad-news-follow .ad-eyebrow { color: rgba(245,242,236,0.55) !important; }
.ad-news-follow .ad-eyebrow::before { background: var(--ad-rose) !important; }
.ad-news-follow .ad-follow-pod__heading {
  font-family: var(--font-display) !important;
  font-size: clamp(32px, 4.5vw, 54px) !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.025em !important;
  color: var(--ad-paper) !important;
  margin: 8px 0 20px !important;
}
.ad-news-follow .ad-follow-pod__lead {
  font-size: 17px !important;
  line-height: 1.6 !important;
  color: rgba(245,242,236,0.65) !important;
  max-width: 46ch;
}
.ad-news-follow .ad-follow-pod__badge { color: var(--ad-paper) !important; text-decoration: none !important; }
.ad-news-follow .ad-follow-pod__badge-icon { width: 40px !important; height: 40px !important; }
.ad-news-follow .ad-follow-pod__badge-label { font-size: 16px !important; }
.ad-news-follow .ad-follow-pod__badge-label small { font-size: 11px; }

.ad-follow-pod__badge-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 600;
}
.ad-follow-pod__badge-label small {
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.5);
  font-weight: 400;
}

/* ── Featured image on single posts — show the FULL image (no cropping) ──
   Contained + centred on an ink letterbox, capped in height so portrait
   photos keep their heads and landscape photos stay whole. */
main > .wp-block-post-featured-image,
main > .wp-block-post-featured-image.alignfull,
.wp-block-post-featured-image.alignfull:not(.ad-card *) {
  max-height: 78vh;
  overflow: hidden;
  margin: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--ad-ink);
}
main > .wp-block-post-featured-image img,
.wp-block-post-featured-image.alignfull:not(.ad-card *) img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  display: block;
}

/* ── Article header — section-head 2-col layout ─────────── */
.ad-article-header {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto;
}
.ad-article-header .meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 8px;
}
.ad-article-header .meta .num {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(11,11,11,0.45);
}
.ad-article-header .meta .num span { color: var(--ad-deep-teal); }
.ad-article-header h1,
.ad-article-header .wp-block-post-title {
  font-size: clamp(36px, 4.5vw, 64px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.05 !important;
  margin: 0 0 24px !important;
}
.ad-article-header .lead,
.ad-article-header .wp-block-post-excerpt {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ad-slate);
  max-width: 56ch;
}
@media (max-width: 880px) {
  .ad-article-header { grid-template-columns: 1fr; gap: 24px; }
}

/* ── A11y + reduced motion ──────────────────────────────── */
.skip-to-main {
  position: absolute; left: -9999px;
  background: var(--ad-paper);
  color: var(--ad-ink);
  padding: 12px 18px; z-index: 9999;
}
.skip-to-main:focus { left: 12px; top: 12px; }
:focus-visible { outline: 2px solid var(--ad-teal-soft); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ad-hero-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
  .ad-meta-strip { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE v2 — trust page (anatomy bundle, 2026-06-09)
   ═══════════════════════════════════════════════════════════ */

/* ── Hero extras ─────────────────────────────────────────── */
.ad-about-hero__lead {
  font-size: 20px; line-height: 1.5; max-width: 56ch;
  color: var(--ad-paper); opacity: 0.82;
  margin: 0 0 32px;
}
.ad-about-hero__cta { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; }
.ad-about-hero__cred {
  margin: 36px 0 0; font-size: 13px; letter-spacing: 0.01em;
  color: var(--ad-mist);
}

/* ── Credibility strip (on ink-soft) ─────────────────────── */
.ad-cred-strip {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  max-width: 1280px; margin-inline: auto;
}
.ad-cred-strip li { display: flex; flex-direction: column; gap: 8px; }
.ad-cred-strip__k {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ad-rose);
}
.ad-cred-strip li:nth-child(even) .ad-cred-strip__k { color: var(--ad-teal-soft); }
.ad-cred-strip__v { font-size: 15px; line-height: 1.4; color: var(--ad-paper); opacity: 0.92; }

/* ── Section lede (paper) ────────────────────────────────── */
.ad-section-lede {
  font-size: 19px; line-height: 1.5; color: var(--ad-slate);
  max-width: 64ch; margin: 28px 0 48px;
}

/* ── Promise cards (paper) ───────────────────────────────── */
.ad-promise { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule-on-light); }
.ad-promise__card { background: var(--ad-paper); padding: 36px 32px 40px; }
.ad-promise__card h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.01em; color: var(--ad-ink); margin: 14px 0 12px; }
.ad-promise__card p { font-size: 16px; line-height: 1.6; color: var(--ad-slate); margin: 0; }
.ad-promise__card .ad-eyebrow { font-size: 12px; }

/* ── Prose blocks (origin / difference) ──────────────────── */
.ad-prose { max-width: 64ch; }
.ad-prose .ad-h2 { margin: 18px 0 28px; color: var(--ad-ink); }
.ad-prose p { font-size: 18px; line-height: 1.65; color: var(--ad-slate); margin: 0 0 22px; }
.ad-prose p:last-child { margin-bottom: 0; }

/* ── About Chris — portrait + body ───────────────────────── */
/* Heading sits in its own row (top-right); the image starts in the second
   row so its top lines up with the first body sentence. Image is natural
   size (no stretch). */
.ad-host { display: grid; grid-template-columns: 440px 1fr; grid-template-areas: ".  head" "media body"; column-gap: 56px; row-gap: 28px; align-items: start; }
.ad-host__head { grid-area: head; }
.ad-host__media { grid-area: media; margin: 0; }
.ad-host__body { grid-area: body; }
.ad-host__media img { width: 100%; height: auto; display: block; filter: saturate(0.92); }
.ad-host__media figcaption { font-size: 13px; color: rgba(11,11,11,0.55); margin-top: 12px; font-style: italic; }
/* Match the section-head heading scale so "Meet Chris Watson" and
   "What the show gives you" are identical in size/weight. */
.ad-host__head .ad-h2 { font-size: clamp(36px, 5vw, 64px); line-height: 1.02; letter-spacing: -0.025em; font-weight: 700; margin: 16px 0 0; color: var(--ad-ink); }
.ad-host__body p { font-size: 17px; line-height: 1.62; color: var(--ad-slate); margin: 0 0 20px; }
.ad-host__creds { list-style: none; margin: 28px 0 0; padding: 24px 0 0; border-top: 1px solid var(--rule-on-light); display: flex; flex-direction: column; gap: 10px; }
.ad-host__creds li { font-size: 14px; color: var(--ad-slate); padding-left: 22px; position: relative; }
.ad-host__creds li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--ad-deep-teal); }

/* ── Recognition & social proof (on ink) ─────────────────── */
.ad-recognition { max-width: 1280px; margin-inline: auto; }
.ad-recognition__h { font-size: clamp(28px, 3vw, 44px); line-height: 1.12; letter-spacing: -0.015em; font-weight: 600; color: var(--ad-paper); margin: 16px 0 48px; max-width: 20ch; }
.ad-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 64px; }
.ad-proof__fig { margin: 0; }
.ad-proof__fig img { width: 100%; height: auto; display: block; border: 1px solid var(--rule-on-dark); }
.ad-proof__fig figcaption { font-size: 14px; line-height: 1.5; color: var(--ad-mist); margin-top: 16px; }
.ad-testimonials { border-top: 1px solid var(--rule-on-dark); padding-top: 48px; }
.ad-testimonials__list { list-style: none; margin: 24px 0 0; padding: 0; columns: 2; column-gap: 48px; }
.ad-testimonials__list li { break-inside: avoid; margin: 0 0 24px; }
.ad-testimonials__list blockquote { margin: 0; padding-left: 20px; border-left: 2px solid var(--ad-rose); font-size: 17px; line-height: 1.5; color: var(--ad-paper); opacity: 0.92; }
.ad-testimonials__src { margin: 16px 0 0; font-size: 14px; color: var(--ad-mist); }
.ad-testimonials__src a { color: var(--ad-teal-soft); text-decoration: none; }
.ad-testimonials__src a:hover { text-decoration: underline; }

/* ── Who it's for (paper) ────────────────────────────────── */
.ad-audience { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.ad-audience__intro .ad-h2 { margin: 16px 0 22px; color: var(--ad-ink); }
.ad-audience__intro p { font-size: 18px; line-height: 1.6; color: var(--ad-slate); margin: 0; }
.ad-audience__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ad-audience__list li { font-size: 17px; color: var(--ad-ink); padding: 14px 0 0; border-top: 1px solid var(--rule-on-light); padding-left: 26px; position: relative; }
.ad-audience__list li::before { content: ""; position: absolute; left: 0; top: 19px; width: 11px; height: 11px; border: 2px solid var(--ad-deep-teal); border-radius: 50%; }

/* ── Bigger mission (on ink) ─────────────────────────────── */
.ad-mission { max-width: 60ch; }
.ad-mission__h { font-size: clamp(30px, 3.4vw, 48px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; color: var(--ad-paper); margin: 16px 0 28px; }
.ad-mission p { font-size: 19px; line-height: 1.6; color: var(--ad-paper); opacity: 0.82; margin: 0 0 20px; }
.ad-mission p:last-child { margin-bottom: 0; }

/* ── Start here — browse all link ────────────────────────── */
.ad-start-here__all { margin: 44px 0 0; }

/* ── Work with (paper-soft) ──────────────────────────────── */
.ad-workwith { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule-on-light); margin-top: 8px; }
.ad-workwith__card { background: var(--ad-paper); padding: 32px 28px 36px; display: flex; flex-direction: column; gap: 14px; }
.ad-workwith__card p { font-size: 16px; line-height: 1.55; color: var(--ad-slate); margin: 0; flex: 1; }
.ad-workwith__card .btn-text { align-self: flex-start; }

/* ── About v2 responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .ad-cred-strip { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ad-promise, .ad-workwith { grid-template-columns: 1fr; }
  .ad-proof { grid-template-columns: 1fr; }
  .ad-host { grid-template-columns: 1fr; grid-template-areas: "head" "media" "body"; gap: 28px; }
  .ad-audience { grid-template-columns: 1fr; gap: 36px; }
  .ad-host__media { max-width: 420px; }
  .ad-testimonials__list { columns: 1; }
}
@media (max-width: 560px) {
  .ad-cred-strip { grid-template-columns: 1fr; gap: 22px; }
  .ad-about-hero__cta { gap: 14px; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE v2 — content upgrade (about-me-led, 2026-06-09)
   ═══════════════════════════════════════════════════════════ */

/* ── Split hero: intro + photo (ink) ─────────────────────── */
.ad-abouthero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.ad-abouthero__lead { font-size: 20px; line-height: 1.5; max-width: 52ch; color: var(--ad-paper); opacity: 0.82; margin: 0 0 32px; }
.ad-abouthero__cta { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; }
.ad-abouthero__cred { margin: 32px 0 0; font-size: 13px; color: var(--ad-mist); }
.ad-abouthero__media { margin: 0; }
.ad-abouthero__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; filter: saturate(0.95); border: 1px solid var(--rule-on-dark); }

/* ── Quick facts (in Meet Chris body) ────────────────────── */
.ad-facts { margin: 36px 0 0; border-top: 1px solid var(--rule-on-light); }
.ad-facts > div { display: grid; grid-template-columns: 160px 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--rule-on-light); }
.ad-facts dt { margin: 0; padding-top: 2px; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ad-deep-teal); }
.ad-facts dd { margin: 0; font-size: 15px; line-height: 1.45; color: var(--ad-slate); }

/* ── Values grid (paper) ─────────────────────────────────── */
.ad-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule-on-light); margin-top: 8px; }
.ad-values__card { background: var(--ad-paper); padding: 30px 28px 34px; }
.ad-values__card h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--ad-ink); margin: 0 0 10px; }
.ad-values__card p { font-size: 15px; line-height: 1.55; color: var(--ad-slate); margin: 0; }

/* ── What to expect (ink) ────────────────────────────────── */
.ad-expect { max-width: 1280px; margin-inline: auto; }
.ad-expect__h { font-size: clamp(28px, 3vw, 44px); line-height: 1.12; letter-spacing: -0.015em; font-weight: 600; color: var(--ad-paper); margin: 16px 0 0; }
.ad-expect__list { list-style: none; margin: 40px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 0 48px; }
.ad-expect__list li { display: flex; flex-direction: column; gap: 6px; padding: 22px 0; border-top: 1px solid var(--rule-on-dark); }
.ad-expect__k { font-size: 17px; font-weight: 600; color: var(--ad-paper); }
.ad-expect__v { font-size: 15px; line-height: 1.5; color: var(--ad-mist); }

/* ── My story — arcs (paper) ─────────────────────────────── */
.ad-story { max-width: 760px; }
.ad-story .ad-h2 { color: var(--ad-ink); margin: 16px 0 22px; }
.ad-story__intro { font-size: 20px; line-height: 1.5; color: var(--ad-slate); margin: 0 0 40px; max-width: 56ch; }
.ad-story__item { border-top: 1px solid var(--rule-on-light); padding: 28px 0; }
.ad-story__item h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; color: var(--ad-ink); margin: 0 0 10px; }
.ad-story__item p { font-size: 17px; line-height: 1.62; color: var(--ad-slate); margin: 0; }
.ad-story__close { margin: 36px 0 0; padding-top: 28px; border-top: 1px solid var(--rule-on-light); font-size: 18px; line-height: 1.55; color: var(--ad-slate); }

/* ── Recognition copy + testimonial citations ────────────── */
.ad-recognition__copy { font-size: 18px; line-height: 1.6; color: rgba(245,242,236,0.8); max-width: 72ch; margin: 0 0 48px; }
.ad-testimonials__list cite { display: block; margin-top: 8px; padding-left: 22px; font-style: normal; font-size: 13px; letter-spacing: 0.02em; color: var(--ad-mist); }

/* ── Adventures collage (masonry) ────────────────────────── */
.ad-collage { column-count: 4; column-gap: 12px; margin-top: 8px; }
.ad-collage__item { break-inside: avoid; margin: 0 0 12px; display: block; }
.ad-collage__item img { width: 100%; height: auto; display: block; filter: saturate(0.92); border: 1px solid rgba(11,11,11,0.08); }
@media (max-width: 900px) { .ad-collage { column-count: 3; } }
@media (max-width: 600px) { .ad-collage { column-count: 2; column-gap: 10px; } .ad-collage__item { margin-bottom: 10px; } }

/* ── About v2 (content upgrade) responsive ───────────────── */
@media (max-width: 900px) {
  .ad-abouthero { grid-template-columns: 1fr; gap: 36px; }
  .ad-abouthero__media { order: -1; max-width: 460px; }
  .ad-abouthero__media img { aspect-ratio: 3 / 2; }
  .ad-values { grid-template-columns: 1fr 1fr; }
  .ad-collage { grid-template-columns: 1fr 1fr; }
  .ad-facts > div { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 560px) {
  .ad-values, .ad-collage { grid-template-columns: 1fr; }
  .ad-abouthero__cta { gap: 14px; }
}

/* ── Reach map (in Recognition, ink) — 2026-06-09 ────────── */
.ad-reach { margin: 56px 0 0; border-top: 1px solid var(--rule-on-dark); padding-top: 48px; }
.ad-reach__h { font-size: clamp(22px, 2.4vw, 32px); font-weight: 600; letter-spacing: -0.015em; color: var(--ad-paper); margin: 12px 0 28px; }
.ad-reach__map { position: relative; width: 100%; max-width: 920px; }
.ad-reach__img { width: 100%; height: auto; display: block; }
.ad-reach__pin { position: absolute; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 8px; }
.ad-reach__pin--flip { flex-direction: row-reverse; }
.ad-reach__dot { display: block; width: 14px; height: 14px; border-radius: 50%; background: var(--ad-deep-teal); box-shadow: 0 0 0 4px rgba(4,120,154,0.22), 0 0 18px 2px rgba(4,120,154,0.35); }
.ad-reach__pin--xl .ad-reach__dot { width: 28px; height: 28px; }
.ad-reach__pin--lg .ad-reach__dot { width: 20px; height: 20px; }
.ad-reach__pin--md .ad-reach__dot { width: 14px; height: 14px; }
.ad-reach__pin--sm .ad-reach__dot { width: 10px; height: 10px; }
.ad-reach__pin--xs .ad-reach__dot { width: 7px; height: 7px; box-shadow: 0 0 0 3px rgba(4,120,154,0.18); }
.ad-reach__pct { font-size: 13px; font-weight: 700; color: var(--ad-paper); letter-spacing: 0.01em; white-space: nowrap; text-shadow: 0 1px 6px rgba(11,11,11,0.9); }
.ad-reach__pin--xs .ad-reach__pct { font-size: 11px; color: var(--ad-mist); }

.ad-reach__legend { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule-on-dark); border: 1px solid var(--rule-on-dark); }
.ad-reach__legend li { background: var(--ad-ink); display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 14px 18px; }
.ad-reach__legend b { font-size: 14px; font-weight: 500; color: var(--ad-mist); }
.ad-reach__legend span { font-size: 16px; font-weight: 700; color: var(--ad-paper); font-variant-numeric: tabular-nums; }

.ad-reach__counts { display: flex; flex-wrap: wrap; gap: 56px; margin: 40px 0 0; }
.ad-reach__stat { display: flex; flex-direction: column; gap: 4px; }
.ad-reach__stat .num { font-size: clamp(36px, 5vw, 60px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--ad-paper); font-variant-numeric: tabular-nums; }
.ad-reach__stat .cap { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ad-deep-teal); }

@media (max-width: 900px) {
  .ad-reach__legend { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .ad-reach__legend { grid-template-columns: 1fr; }
  .ad-reach__counts { gap: 32px; }
  .ad-reach__pct { font-size: 11px; }
}

/* ── Promise section: podcast logo in the section head ───── */
.ad-section-head--logo { align-items: start; grid-template-columns: 440px 1fr; column-gap: 56px; }
.ad-promise-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.ad-promise-logo { width: 440px; max-width: 100%; height: auto; aspect-ratio: 1 / 1; display: block; border: 1px solid var(--rule-on-light); }
.ad-section-head--logo .num { margin: 0; }
.ad-promise-copy { align-self: start; }
.ad-promise-copy .ad-section-lede { margin: 24px 0 0; max-width: 54ch; }
@media (min-width: 901px) and (max-width: 1100px) { .ad-section-head--logo, .ad-host { grid-template-columns: 360px 1fr; } .ad-promise-logo { width: 360px; } }
@media (max-width: 900px) {
  .ad-section-head--logo { grid-template-columns: 1fr; }
  .ad-promise-brand { flex-direction: row; align-items: center; gap: 18px; }
  .ad-promise-logo { width: 130px; max-width: 130px; flex: none; }
}

/* ── About page: unify ALL section headings to one scale ──── */
/* Matches .ad-section-head h2 (used for "What the show gives you").
   Colour + margins are left to each section's own rule. */
.ad-expect__h,
.ad-recognition__h,
.ad-mission__h,
.ad-story .ad-h2,
.ad-audience__intro .ad-h2,
.ad-inline-newsletter__title,
.ad-follow-pod--lg .ad-follow-pod__heading {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
}

/* ── Contact page form ───────────────────────────────────── */
.ad-contact-lede { font-size: 19px; line-height: 1.55; color: var(--ad-slate); max-width: 60ch; margin: 24px 0 40px; }
.ad-contact-form { margin: 0; }
.ad-contact-form__hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.ad-contact-form__notice { font-size: 16px; line-height: 1.5; padding: 16px 18px; margin: 0 0 28px; border-left: 3px solid; }
.ad-contact-form__notice--ok { color: var(--ad-ink); border-left-color: var(--ad-deep-teal); background: rgba(4,120,154,0.07); }
.ad-contact-form__notice--err { color: var(--ad-ink); border-left-color: var(--ad-rose); background: rgba(198,97,121,0.08); }
.ad-contact-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; }
.ad-contact-form__row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.ad-contact-form__row label { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ad-slate); }
.ad-contact-form input,
.ad-contact-form select,
.ad-contact-form textarea {
  font-family: var(--font-sans); font-size: 16px; line-height: 1.4; color: var(--ad-ink);
  background: var(--ad-paper); border: 1px solid rgba(11,11,11,0.28); border-radius: 0;
  padding: 14px 16px; width: 100%; -webkit-appearance: none; appearance: none;
}
.ad-contact-form textarea { resize: vertical; min-height: 150px; }
.ad-contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%232A2A2A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px;
}
.ad-contact-form input:focus,
.ad-contact-form select:focus,
.ad-contact-form textarea:focus { outline: none; border-color: var(--ad-deep-teal); box-shadow: 0 0 0 2px rgba(4,120,154,0.18); }
.ad-contact-form__submit { margin-top: 8px; cursor: pointer; }
@media (max-width: 560px) {
  .ad-contact-form__grid { grid-template-columns: 1fr; gap: 0; }
}

/* ── Welcome-mat lead-capture overlay ────────────────────── */
.ad-doormat {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: var(--ad-ink);
  padding: clamp(24px, 6vw, 72px);
  opacity: 0; transition: opacity .4s ease;
}
.ad-doormat.is-open { opacity: 1; }
.ad-doormat[hidden] { display: none; }
.ad-doormat__inner { position: relative; width: 100%; max-width: 600px; text-align: center; }
.ad-doormat__close {
  position: fixed; top: clamp(16px, 3vw, 28px); right: clamp(16px, 3vw, 28px);
  width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
  color: rgba(245,242,236,0.6); background: transparent; border: 1px solid var(--rule-on-dark);
  cursor: pointer; transition: color .2s, border-color .2s;
}
.ad-doormat__close:hover { color: var(--ad-paper); border-color: var(--ad-paper); }
.ad-doormat__mark { width: 76px; height: 76px; display: block; margin: 0 auto 24px; border-radius: 3px; }
.ad-doormat .ad-eyebrow { justify-content: center; }
.ad-doormat__title { font-size: clamp(34px, 5vw, 56px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; color: var(--ad-paper); margin: 16px 0 16px; }
.ad-doormat__lead { font-size: 18px; line-height: 1.5; color: rgba(245,242,236,0.75); max-width: 46ch; margin: 0 auto 32px; }
.ad-doormat .ad-kit-form { max-width: 520px; margin: 0 auto; }
.ad-doormat__decline { margin: 22px 0 0; background: transparent; border: 0; color: rgba(245,242,236,0.5); font-size: 13px; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.ad-doormat__decline:hover { color: rgba(245,242,236,0.8); }

/* ── Podcast index (all episodes, grouped by season, one page) ───── */
.ad-podcast-index { display: flex; flex-direction: column; gap: 72px; }
.ad-podcast-season { display: flex; flex-direction: column; }
.ad-podcast-season .ad-section-head { margin-bottom: 32px; }
.ad-podcast-season .ad-section-head .num { text-transform: uppercase; }
.ad-podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 28px;
}
.ad-podcast-card { text-decoration: none; }
.ad-podcast-card .ad-card__title a { color: inherit; text-decoration: none; transition: color var(--dur-fast, .15s); }
.ad-podcast-card:hover .ad-card__title a, .ad-podcast-card .ad-card__title a:hover { color: var(--ad-rose); }
.ad-podcast-card .ad-card__cover { display: block; }
/* episode index sits on a paper section, so force ink-on-paper text */
/* Square cards — the episode pod art is 1:1 (branded square), so show it whole
   rather than letting a 16/9 frame crop the season/episode label + guest name. */
.ad-podcast-card .ad-card__cover { aspect-ratio: 1/1; background: var(--ad-ink); position: relative; overflow: hidden; }
.ad-podcast-card .ad-card__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ad-podcast-card .ad-card__date { color: rgba(11,11,11,0.45); }
.ad-podcast-card .ad-card__title { color: var(--ad-ink); }
.ad-podcast-card .ad-card__lede { color: var(--ad-slate); font-size: 13px; letter-spacing: 0.01em; }
.ad-podcast-card:hover .ad-card__title { color: var(--ad-rose); }
@media (max-width: 900px) { .ad-podcast-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 22px; } .ad-podcast-index { gap: 56px; } }
@media (max-width: 560px) { .ad-podcast-grid { grid-template-columns: 1fr; } }

/* ── Glossary term page ───────────────────────────────────────── */
.ad-glossary-term__hero .ad-eyebrow a.ad-glossary-term__back { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(245,242,236,0.3); padding-bottom: 2px; }
.ad-glossary-term__hero .ad-eyebrow a.ad-glossary-term__back:hover { color: var(--ad-paper); border-color: var(--ad-paper); }
.ad-glossary-term__hero .wp-block-post-title { font-size: clamp(36px, 5vw, 64px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; color: var(--ad-paper); }
.ad-glossary-term__hero .wp-block-post-title em { font-family: var(--font-fraunces, 'Fraunces', serif); font-style: italic; font-weight: 500; color: var(--ad-rose); }
.ad-glossary-term__body { font-size: 18px; line-height: 1.7; color: var(--ad-ink); }
.ad-glossary-term__body > p:first-of-type { font-size: 21px; line-height: 1.6; color: var(--ad-ink); }
.ad-glossary-term__body h2 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; letter-spacing: -0.015em; margin: 40px 0 12px; color: var(--ad-ink); }
.ad-glossary-term__body h2 em { font-family: var(--font-fraunces, 'Fraunces', serif); font-style: italic; font-weight: 500; color: var(--ad-deep-teal); }
.ad-glossary-term__body a { color: var(--ad-deep-teal); text-underline-offset: 2px; }
.ad-glossary-term__body .ad-news-sources { font-size: 14px; color: var(--ad-slate); margin-top: 28px; }
.ad-glossary-term__all { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(11,11,11,0.12); font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.ad-glossary-term__all a { color: var(--ad-slate); text-decoration: none; }
.ad-glossary-term__all a:hover { color: var(--ad-rose); }

/* ── Glossary index — A–Z nav + dense navigable columns ───────── */
.ad-glossary-az { display: flex; flex-wrap: wrap; gap: 4px; position: sticky; top: 0; z-index: 5; background: var(--ad-paper); padding: 16px 0; margin: 0 0 16px; border-bottom: 1px solid rgba(11,11,11,0.12); }
.ad-glossary-az__link { display: inline-flex; align-items: center; justify-content: center; min-width: 32px; height: 32px; padding: 0 6px; border-radius: 4px; font-size: 14px; font-weight: 700; letter-spacing: 0.02em; text-decoration: none; color: var(--ad-ink); transition: background var(--dur-fast, .15s), color var(--dur-fast, .15s); }
.ad-glossary-az__link:hover { background: var(--ad-ink); color: var(--ad-paper); }
.ad-glossary-az__link.is-empty { color: rgba(11,11,11,0.22); pointer-events: none; }
.ad-glossary-index__count { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ad-slate); margin: 0 0 36px; }
.ad-glossary-letter { padding: 8px 0 28px; scroll-margin-top: 72px; border-top: 1px solid rgba(11,11,11,0.1); }
.ad-glossary-letter__heading { font-family: var(--font-fraunces, 'Fraunces', serif); font-size: 34px; font-weight: 500; line-height: 1; color: var(--ad-rose); margin: 18px 0 18px; }
.ad-glossary-cols { list-style: none; margin: 0; padding: 0; columns: 4; column-gap: 36px; }
.ad-glossary-cols__item { break-inside: avoid; margin: 0 0 2px; }
.ad-glossary-cols__item a { display: block; padding: 7px 0; font-size: 16px; font-weight: 500; letter-spacing: -0.01em; color: var(--ad-ink); text-decoration: none; border-bottom: 1px solid rgba(11,11,11,0.06); transition: color var(--dur-fast, .15s), padding-left var(--dur-fast, .15s); }
.ad-glossary-cols__item a:hover { color: var(--ad-rose); padding-left: 6px; }
@media (max-width: 1024px) { .ad-glossary-cols { columns: 3; } }
@media (max-width: 760px)  { .ad-glossary-cols { columns: 2; } }
@media (max-width: 480px)  { .ad-glossary-cols { columns: 1; } .ad-glossary-letter__heading { font-size: 28px; } }

/* ── Entity engine — in-body links, hub backlinks, references ──── */
/* Auto-injected internal links to entity hub pages (render-time). */
.ad-entity-link { color: var(--ad-deep-teal); text-decoration: none; border-bottom: 1px solid rgba(4,120,154,0.32); text-underline-offset: 2px; transition: border-color var(--dur-fast, .15s), color var(--dur-fast, .15s); }
.ad-entity-link:hover { color: var(--ad-rose); border-bottom-color: var(--ad-rose); }

/* References block (grounded sameAs) under a definition. */
.ad-entity-authority { margin: 36px 0 0; padding: 18px 22px; background: rgba(4,120,154,0.05); border-left: 3px solid var(--ad-deep-teal); border-radius: 4px; }
.ad-entity-authority__label { display: block; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ad-slate); margin-bottom: 8px; }
.ad-entity-authority__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.ad-entity-authority__list a { font-size: 15px; font-weight: 600; color: var(--ad-deep-teal); text-decoration: none; }
.ad-entity-authority__list a:hover { color: var(--ad-rose); }

/* Full-bleed graph band: "Where this appears" + related entries. */
.ad-entity-graph { width: 100vw; margin-left: calc(50% - 50vw); background: var(--ad-mist, #E8E4DB); }
.ad-entity-graph__inner { max-width: 880px; margin: 0 auto; padding: clamp(48px, 6vw, 72px) 24px; }
.ad-entity-appears__title, .ad-entity-related__title { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ad-slate); margin: 0 0 22px; }
.ad-entity-related { margin-top: 48px; }
.ad-entity-appears__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2px 28px; }
.ad-entity-appears__item a { display: flex; flex-direction: column; gap: 2px; padding: 14px 0; border-bottom: 1px solid rgba(11,11,11,0.1); text-decoration: none; transition: padding-left var(--dur-fast, .15s); }
.ad-entity-appears__item a:hover { padding-left: 8px; }
.ad-entity-appears__kind { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ad-deep-teal); }
.ad-entity-appears__name { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; color: var(--ad-ink); line-height: 1.35; }
.ad-entity-appears__item a:hover .ad-entity-appears__name { color: var(--ad-rose); }
.ad-entity-related__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.ad-entity-related__list a { display: inline-block; padding: 8px 16px; background: var(--ad-paper); border: 1px solid rgba(11,11,11,0.12); border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--ad-ink); text-decoration: none; transition: all var(--dur-fast, .15s); }
.ad-entity-related__list a:hover { border-color: var(--ad-rose); color: var(--ad-rose); }

/* ── Pillar / topic hub pages ─────────────────────────────────── */
.ad-pillar__lead { font-size: 21px; line-height: 1.6; color: var(--ad-ink); max-width: 720px; }
.ad-pillar__section-title { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ad-slate); margin: 0 0 24px; }
.ad-pillar__episodes { list-style: none; margin: 0 0 8px; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2px 28px; }
.ad-pillar__episodes a { display: block; padding: 16px 0; border-bottom: 1px solid rgba(11,11,11,0.1); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; color: var(--ad-ink); text-decoration: none; transition: padding-left var(--dur-fast, .15s); }
.ad-pillar__episodes a:hover { padding-left: 8px; color: var(--ad-rose); }
.ad-pillar__entities { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.ad-pillar__entities a { display: inline-block; padding: 8px 16px; background: var(--ad-paper); border: 1px solid rgba(11,11,11,0.12); border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--ad-ink); text-decoration: none; transition: all var(--dur-fast, .15s); }
.ad-pillar__entities a:hover { border-color: var(--ad-rose); color: var(--ad-rose); }
