/* Big Picture Medicine — Essays
   White paper, black ink, one blue. Inter Display throughout (Atlas-style). */

@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Science+Gothic:wght@400..700&display=swap');

:root {
  --ink: #111111;
  --paper: #ffffff;
  --grey: #666666;
  --faint: #9a9a9a;
  --line: #e9e8e4;
  --blue: #3d849c;
  --sans: 'Inter', 'Inter Display', -apple-system, 'Helvetica Neue', sans-serif;
  /* spacing scale — compose from these; no ad-hoc px (COMPONENTS.md) */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px; --sp-5: 24px;
  --sp-6: 32px; --sp-7: 44px; --sp-8: 64px; --sp-9: 96px;
  /* chart series colors — CVD + contrast validated on white AND #0a0a0b
     (dataviz six-check validator, 2026-08-26); brand teal --blue fails the
     chroma floor for marks, so charts use this chart-grade sibling */
  --chart-1: #2f8fb3;
  --chart-2: #b5622d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}

a { color: inherit; }

::selection { background: var(--blue); color: var(--ink); }

/* ---------- chrome ---------- */

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px;
}

.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { display: block; height: 36px; width: auto; filter: brightness(0); }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a { text-decoration: none; color: var(--grey); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

@media (max-width: 640px) {
  .site-nav { padding: 18px 16px; gap: 14px; }
  .site-nav .brand-name { font-size: 13px; }
  .nav-links { gap: 13px; font-size: 13px; }
}
@media (max-width: 400px) {
  .site-nav { padding: 16px 12px; gap: 10px; }
  .site-nav .brand-name { font-size: 12px; letter-spacing: 0.02em; }
  .nav-links { gap: 9px; font-size: 13px; }
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 120px;
}

.site-footer .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 32px 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
}

.site-footer .inner > div:first-child > div:first-child {
  color: var(--ink);
  font-weight: 600;
}

.site-footer a { color: var(--grey); }
.site-footer a:hover { color: var(--ink); }

/* ---------- home ---------- */

.hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 96px 32px 24px;
  text-align: center;
}

.hero h1 {
  font-weight: 600;
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}

.hero h1 em { font-style: normal; color: var(--grey); }

.hero .standfirst {
  font-size: 18px;
  color: var(--grey);
  max-width: 560px;
  margin: 0 auto;
}

.hero .kicker {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey);
  margin-bottom: 24px;
}

.index-list {
  max-width: 880px;
  margin: 72px auto 0;
  padding: 0 32px;
  border-top: 1px solid var(--line);
}

.index-item {
  display: grid;
  grid-template-columns: 64px 1fr 150px;
  gap: 36px;
  align-items: center;
  padding: 40px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.index-item .num {
  font-size: 15px;
  font-weight: 500;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}

.index-item h2 {
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.index-item:hover h2 { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 4px; }

.index-item .one-liner {
  color: var(--grey);
  font-size: 17px;
  margin-bottom: 10px;
}

.index-item .with { font-size: 15px; color: var(--faint); }
.index-item .with b { color: var(--grey); font-weight: 500; }

.index-item .thumb { justify-self: end; }
.index-item .thumb svg { display: block; }

/* ---------- essay page ---------- */

.essay-head {
  max-width: 760px;
  margin: 72px auto 0;
  padding: 0 32px;
  text-align: center;
}

.essay-head .kicker {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey);
  margin-bottom: 24px;
}
.essay-head .kicker .status { color: var(--blue); }

.essay-head h1 {
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.essay-head .dek {
  font-size: 20px;
  line-height: 1.5;
  color: var(--grey);
  max-width: 600px;
  margin: 0 auto 36px;
}

.byline { font-size: 15px; color: var(--grey); }
.byline b { color: var(--ink); font-weight: 600; }

/* contributors strip */
.voices-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 36px;
  margin: 28px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 640px;
}

.voices-strip .label {
  flex-basis: 100%;
  font-size: 15px;
  font-weight: 500;
  color: var(--faint);
}

.voice-chip {
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
}

.voice-chip .avatar {
  width: 40px; height: 40px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}

.voice-chip .who { line-height: 1.35; }
.voice-chip .who .name { font-size: 15px; font-weight: 600; display: block; }
.voice-chip .who .role { font-size: 14px; color: var(--grey); }

.hero-illo {
  text-align: center;
  margin: 64px auto 8px;
  padding: 0 32px;
}
.hero-illo svg { max-width: 100%; height: auto; }

.essay-body {
  max-width: 680px;
  margin: 48px auto 0;
  padding: 0 32px;
}

.essay-body p { margin-bottom: 26px; }

.essay-body h2 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 56px 0 20px;
}

.essay-body strong { font-weight: 600; }

.essay-body .sidenote {
  font-size: 15px;
  color: var(--grey);
  border-left: 2px solid var(--line);
  padding-left: 20px;
  margin: 32px 0;
}

/* pull quote with attribution */
.pull {
  margin: 56px 0;
  text-align: center;
  padding: 0 12px;
}

.pull blockquote {
  font-weight: 500;
  font-size: 27px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.pull .attr {
  margin-top: 16px;
  font-size: 15px;
  color: var(--grey);
}
.pull .attr b { color: var(--ink); font-weight: 600; }

/* in-essay interview block */
.interview {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 36px 28px;
  margin: 52px 0;
}

.interview .label {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 18px;
}

.interview .q {
  font-size: 15px;
  font-weight: 600;
  margin: 22px 0 8px;
}

.interview .a { font-size: 17px; }
.interview .a b { font-weight: 600; }

.interview .placeholder {
  font-size: 15px;
  color: var(--grey);
}

/* sources */
.sources {
  max-width: 680px;
  margin: 72px auto 0;
  padding: 28px 32px 0;
}
.sources .label {
  font-size: 15px;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 12px;
}
.sources ul { list-style: none; }
.sources li {
  font-size: 15px;
  color: var(--grey);
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.sources ol.refs {
  list-style: decimal;
  padding-left: 22px;
}
.sources ol.refs li { border-top: 1px solid var(--line); }
.sources ol.refs li:first-child { border-top: none; }

/* inline reference markers */
sup.ref { line-height: 0; }
sup.ref a {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  padding: 0 1px;
}
sup.ref a:hover { text-decoration: underline; }

/* latest-episode card (podcast home) — uses the standard .index-item row */
.latest-ep {
  max-width: 1020px;
  margin: 84px auto 0;
  padding: 0 32px;
}
.latest-ep .sec-title + .index-item { border-top: 1px solid var(--line); }
.latest-ep .label {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 4px;
}
.latest-ep .index-item { border-top: 1px solid var(--line); padding: 26px 8px; }
.latest-ep .index-item h2 {
  font-family: var(--sans);
  font-size: 20px;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.latest-ep .index-item .guest { font-size: 15px; color: var(--grey); }

/* next-essay card */
.next-card {
  max-width: 680px;
  margin: 80px auto 0;
  padding: 0 32px;
}
.next-card a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 34px;
  text-decoration: none;
  transition: border-color 0.15s;
}
.next-card a:hover { border-color: var(--ink); }
.next-card .label {
  font-size: 15px;
  font-weight: 500;
  color: var(--faint);
  margin-bottom: 8px;
}
.next-card h3 { font-weight: 600; font-size: 21px; letter-spacing: -0.02em; }

/* ---------- responsive ---------- */

@media (max-width: 760px) {
  body { font-size: 17px; }
  .site-nav { padding: 20px; }
  .brand img { height: 26px; }
  .nav-links { gap: 18px; }
  .hero { padding-top: 56px; }
  .index-item { grid-template-columns: 1fr; gap: 14px; padding: 32px 4px; }
  .index-item .num { order: -1; }
  .index-item .thumb { display: none; }
  .interview { padding: 26px 22px; }
  .pull blockquote { font-size: 24px; }
  .site-footer .inner { flex-direction: column; }
}

/* ---------- landing ---------- */

.land-hero {
  max-width: 840px;
  margin: 0 auto;
  padding: 100px 32px 20px;
  text-align: center;
}

.land-hero h1 {
  font-weight: 600;
  font-size: clamp(42px, 6.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 26px;
}

.land-hero .standfirst {
  font-size: 20px;
  color: var(--grey);
  max-width: 620px;
  margin: 0 auto 36px;
}


.land-section {
  max-width: 1010px;
  margin: 96px auto 0;
  padding: 0 32px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head h2 { font-weight: 600; font-size: 30px; letter-spacing: -0.02em; }

.section-head a { font-size: 15px; font-weight: 500; color: var(--grey); text-decoration: none; }
.section-head a:hover { color: var(--ink); }



/* ---------- tags ---------- */

.tags { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 4px 13px;
  text-decoration: none;
}
a.tag:hover, .tag.active { border-color: var(--ink); color: var(--ink); }


/* ---------- episode page ---------- */

.listen-row { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 30px; }

.listen-row a {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  transition: opacity 0.15s;
}
.listen-row a:hover { opacity: 0.65; }

.ep-tags { justify-content: center; margin-top: 22px; }

.ep-body {
  max-width: 680px;
  margin: 56px auto 0;
  padding: 0 32px;
}

.ep-body h2 {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 52px 0 18px;
}

.ep-body p { margin-bottom: 24px; }

.ep-body ul { margin: 0 0 24px 22px; }
.ep-body li { margin-bottom: 10px; }

/* transcript */
.transcript { }

.transcript .turn { margin: 26px 0; }
.transcript .speaker { font-weight: 600; font-size: 15px; display: block; margin-bottom: 4px; }
.transcript .turn p { font-size: 17px; color: #2b2b2b; margin-bottom: 10px; }

.note-box {
  border: 1px dashed var(--faint);
  border-radius: 8px;
  padding: 20px 26px;
  font-size: 15px;
  color: var(--grey);
  margin: 28px 0;
}

/* ---------- about page ---------- */

.about-wrap {
  max-width: 1010px;
  margin: 80px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.about-wrap .portrait { position: sticky; top: 40px; }
.about-wrap .portrait img { width: 100%; height: auto; }
.about-wrap .portrait .photo {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
}
.about-wrap .portrait .caption { font-size: 14px; color: var(--faint); text-align: center; margin-top: 8px; }

.about-copy h1 { font-weight: 600; font-size: clamp(34px, 4.5vw, 46px); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 24px; }
.about-copy p { margin-bottom: 24px; font-size: 18px; }
.about-copy h2 { font-weight: 600; font-size: 24px; letter-spacing: -0.02em; margin: 44px 0 16px; }
.about-copy .links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

@media (max-width: 860px) {
  .land-about { grid-template-columns: 1fr; text-align: center; }
  .land-about img { max-width: 220px; margin: 0 auto; }
  .index-item .date { display: none; }
  .about-wrap { grid-template-columns: 1fr; gap: 36px; }
  .about-wrap .portrait { position: static; max-width: 300px; margin: 0 auto; }
}

/* ---------- editorial additions ---------- */

.cta-links {
  display: flex;
  gap: 34px;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 17px;
}
.cta-links a { text-decoration: none; border-bottom: 1.5px solid var(--ink); padding-bottom: 2px; }
.cta-links a:hover { opacity: 0.65; }

.index-item .date { justify-self: end; text-align: right; font-size: 15px; color: var(--faint); font-variant-numeric: tabular-nums; }
.index-item .tags { margin-top: 12px; }
.index-item h2 { margin-top: 2px; }
.index-item .guest { font-size: 15px; color: var(--grey); }

.land-about {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 52px;
  align-items: center;
  max-width: 880px;
  margin: 110px auto 0;
  padding: 0 32px;
}
.land-about img { width: 100%; height: auto; }
.land-about h2 { font-weight: 600; font-size: 27px; letter-spacing: -0.02em; margin-bottom: 12px; }
.land-about p { color: var(--grey); font-size: 17px; margin-bottom: 16px; }
.land-about a.more { font-weight: 600; font-size: 15px; text-decoration: none; border-bottom: 1.5px solid var(--ink); padding-bottom: 1px; }
.land-about a.more:hover { opacity: 0.65; }

.land-list { max-width: 880px; margin: 100px auto 0; padding: 0 32px; }
.land-list .section-head { border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 0; }

/* ---------- musty.io personal chrome ---------- */

.brand-name {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.bpm-mark {
  display: block;
  height: 36px;
  width: auto;
  margin: 0 auto 28px;
  filter: brightness(0);
}

.section-head .bpm-logo { height: 30px; width: auto; filter: brightness(0); display: block; }

.land-hero .sketch { width: 220px; height: auto; margin: 0 auto 34px; display: block; }

/* ---------- podcast section: Atlas sidebar layout ---------- */

.pod-layout { display: grid; grid-template-columns: 330px minmax(0, 1fr); }

.pod-side {
  border-right: 1px solid var(--line);
  padding: 28px 32px 48px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.pod-side .bpm-side-logo { height: 64px; width: auto; filter: brightness(0); display: block; margin: 4px auto 24px; }
.pod-side .side-title { font-size: 20px; font-weight: 600; letter-spacing: 0.02em; line-height: 1.3; text-transform: uppercase; }
.pod-side .side-sub { color: var(--grey); font-size: 15px; margin-top: 6px; }

.ep-toc a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 12px 0;
  text-decoration: none;
  border-top: 1px solid var(--line);
}
.ep-toc a:first-child { border-top: none; }
.ep-toc .n { font-size: 14px; color: var(--faint); padding-top: 1px; font-variant-numeric: tabular-nums; }
.ep-toc .t { font-size: 15px; font-weight: 600; line-height: 1.35; display: block; }
.ep-toc .g { font-size: 14px; color: var(--grey); font-weight: 400; display: block; margin-top: 1px; }
.ep-toc a:hover .t { text-decoration: underline; text-underline-offset: 3px; }
.ep-toc a.active .t { color: var(--blue); }

.pod-main { min-width: 0; position: relative; }
@media (prefers-reduced-motion: no-preference) {
  .pod-main.pjx { animation: pjx-in 0.22s ease; }
  @keyframes pjx-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: none; }
  }
}
.pod-main .page-dates {
  position: absolute;
  top: 22px;
  right: 30px;
  margin: 0;
  font-size: 13px;
  color: var(--faint);
}
@media (max-width: 900px) {
  .pod-main .page-dates { position: static; text-align: right; padding: 16px 24px 0; }
  }

/* scroll shooting star (spawned by particle-logo.js, home page) */
.bpm-shoot {
  position: fixed;
  width: 120px;
  height: 1.5px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(203, 223, 230, 0.85), transparent);
  border-radius: 1px;
  transform: rotate(14deg);
  opacity: 0;
  animation: bpm-shoot-once 1.35s ease-out forwards;
}
@keyframes bpm-shoot-once {
  0% { opacity: 0; transform: translate(0, 0) rotate(14deg); }
  10% { opacity: 0.75; }
  100% { opacity: 0; transform: translate(44vw, 12vw) rotate(14deg); }
}

/* ---------- 8-bit particle brand (podcast home hero) ---------- */
.pod-hero { text-align: center; }
.pod-hero canvas {
  width: 300px;
  height: 330px;
  max-width: 80%;
  display: block;
  margin: 0 auto 18px;
}
.pod-hero-name {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 18px;
}
.pod-hero .kicker,
.podcast .essay-head .pod-hero .kicker {
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (prefers-reduced-motion: no-preference) {
  .pod-hero .pod-hero-name, .pod-hero .kicker, .pod-hero .dek {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transform: translateY(8px);
  }
  .pod-hero.formed .pod-hero-name, .pod-hero.formed .kicker, .pod-hero.formed .dek {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  /* stacked layout: search is noise between the brand and the episode list */
  .pod-side .pod-search { display: none; }
  /* particle-logo.js moves .pod-hero to the top of the sidebar on small screens */
  .pod-side .pod-hero { margin: 6px 0 26px; }
  .pod-side .pod-hero canvas { width: 220px; height: 242px; }
  .pod-side .pod-hero .pod-hero-name { font-size: 30px; }
  .pod-side .pod-hero .dek { font-size: 17px; max-width: 34ch; margin: 0 auto; }
  .pod-side .pod-hero ~ a .bpm-side-logo { display: none; }
}

/* ---------- flight paths (podcast home) — square playlist covers ---------- */
.flight-paths {
  max-width: 1020px;
  margin: 84px auto 0;
  padding: 0 32px;
}
.fp-dek {
  color: var(--grey);
  margin: 0 auto 24px;
  max-width: 616px;
}
.fp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.fp-cover {
  aspect-ratio: 1;
  background: #cbdfe6;
  color: #16181a;
  text-decoration: none;
  padding: 14px 15px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, background 0.25s ease;
}
.fp-cover:hover { transform: translateY(-3px); background: #d8e9ee; }
.fp-num {
  font-family: 'Science Gothic', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}
.fp-title {
  font-family: 'Science Gothic', 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-top: auto;
}
.fp-count {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 6px;
}
@media (max-width: 900px) {
  .fp-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .fp-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ---------- YouTube embed (episode pages with video versions) ---------- */
.yt-embed {
  max-width: 680px;
  margin: 44px auto 0;
  padding: 0 32px;
}
.yt-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: #000;
}

/* ---------- flight path pages: playable rows ---------- */
.path-actions { margin-top: -6px; }
.path-play {
  font-family: 'Science Gothic', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #cbdfe6;
  color: #16181a;
  border: none;
  padding: 12px 34px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.path-play:hover { background: #d8e9ee; transform: translateY(-1px); }
.path-list .row-player.done { opacity: 0.45; transition: opacity 0.2s; }
.path-list .row-player.done:hover { opacity: 0.85; }
.row-eq { display: inline-flex; margin-left: 10px; vertical-align: baseline; }
/* keyboard: number flips to play on focus too, not just hover */
.path-list .index-item:focus-within .pp { display: flex; }
.path-list .index-item:focus-within .num { visibility: hidden; }
/* rows are editorial, not boxes: kill the audio-player panel styling that
   .player brings along in the themes */
.path-list .row-player {
  background: none !important;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 30px 8px;
}
.path-list .row-player {
  grid-template-columns: 64px 1fr;
  gap: 12px 28px;
  align-items: start;
}
.path-list .numcell { position: relative; z-index: 1; padding-top: 3px; }
.path-list .num, .path-list .index-item .pp { background: var(--paper); }
.path-list .num { display: inline-block; padding: 6px 0; }
.path-list .row-link h2 { font-size: 21px; margin-bottom: 0; line-height: 1.25; }
.path-list .guest { font-size: 14px; color: var(--grey); margin-top: 6px; }
.path-list .row-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--faint);
  margin-top: 10px;
  max-width: 68ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.path-list .row-player .pbar, .path-list .row-player .ptime { display: none !important; }
.path-list .index-item { position: relative; }
.path-list .numcell { position: relative; display: block; }
.path-list .row-main { min-width: 0; }
.path-list .row-link { text-decoration: none; }
.path-list .row-link:hover h2 { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 4px; }
.path-list .index-item:hover h2 { text-decoration: none; }   /* only the title link underlines, not row hover */
.val-tag {
  display: inline-block;
  font-family: 'Science Gothic', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #cbdfe6;
  color: #16181a;
  padding: 3px 9px;
  margin: 6px 0 0;
  vertical-align: middle;
}
.path-list .why {
  font-size: 15px;
  line-height: 1.55;
  color: var(--grey);
  margin-top: 7px;
  max-width: 56ch;
}
.path-list .guest { margin-top: 2px; }
.path-list .date {
  line-height: 1.55;
  font-size: 14px;
  white-space: nowrap;
}
.path-list .dur {
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--faint);
}
/* Spotify move: episode number flips to a play button on hover */
.path-list .index-item .pp {
  display: none;
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  background: var(--paper);
}
.path-list .index-item .pp { top: 8px; transform: none; }   /* top edge flush with the title text */
.path-list .index-item:hover .pp, .path-list .index-item.playing .pp { display: flex; }
.path-list .index-item:hover .num, .path-list .index-item.playing .num { visibility: hidden; }
@media (hover: none) {
  /* touch: no hover — always show the play button, hide the number */
  .path-list .index-item .pp { display: flex; }
  .path-list .index-item .num { visibility: hidden; }
}

/* ---------- guest wall (podcast home) — hairline grid, exclusive-list feel ---------- */
.guest-list {
  max-width: 1020px;
  margin: 84px auto 0;
  padding: 0 32px;
}
.sec-title {
  font-weight: 600;
  font-size: 27px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 auto 18px;
  max-width: 616px;
}
.guest-list > p {
  color: var(--grey);
  margin: 0 auto;
  max-width: 616px;
}
.guest-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 28px;
}
.gw-cell {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 28px 32px;
  background: var(--paper);
  text-decoration: none;
  transition: background 0.25s ease;
  min-width: 0;
}
.podcast .gw-cell:hover { background: #262b2e; }
/* every portrait sits on the BPM ice backdrop — B/W subject, brand-blue
   ground, identical in both themes. Cutout PNGs look best; opaque photos
   simply cover it. */
.gw-pic {
  flex: none;
  width: 182px;
  height: 182px;
  background: #cbdfe6;
  border: 1px solid var(--line);
  overflow: hidden;
}
.gw-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
@media (prefers-reduced-motion: no-preference) {
  .gw-photo { transition: transform 0.35s ease; }
  .gw-cell:hover .gw-photo { transform: scale(1.2); }
}
.gw-who { line-height: 1.35; min-width: 0; }
.gw-name { display: block; font-size: 21px; font-weight: 600; letter-spacing: -0.01em; }
.gw-name .gw-cred { font-size: 15px; font-weight: 500; color: var(--grey); letter-spacing: 0; white-space: nowrap; }
.gw-role { display: block; font-size: 15px; color: var(--grey); margin-top: 3px; }
.gw-cell:hover .gw-name { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 1100px) {
  .gw-pic { width: 148px; height: 148px; }
  .gw-name { font-size: 18px; }
  .gw-cell { gap: 20px; padding: 24px 24px; }
}
@media (max-width: 900px) {
  .guest-wall { grid-template-columns: 1fr; }
  .gw-pic { width: 182px; height: 182px; }
  .gw-name { font-size: 21px; }
}
@media (max-width: 640px) {
  .gw-cell { padding: 16px 16px; gap: 18px; }
  .gw-pic { width: 104px; height: 104px; }
  .gw-name { font-size: 18px; }
  .gw-role { font-size: 14px; }
}

/* ---------- ask the archive (podcast home hero) ---------- */
.ask-hero { max-width: 620px; margin: 34px auto 6px; text-align: left; }
.ask-hero form {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  transition: border-color 0.15s ease;
}
.ask-hero form:focus-within { border-color: var(--blue); }
.ask-hero input {
  flex: 1;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 17px;
  color: var(--ink);
  padding: 16px 18px;
  outline: none;
  min-width: 0;
}
.ask-hero input::placeholder { color: var(--faint); }
.ask-hero button {
  border: none;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 0 22px;
  cursor: pointer;
  transition: color 0.15s ease;
}
.ask-hero button:hover { color: var(--ink); }
.ask-hero button:disabled { color: var(--faint); cursor: default; }
.ask-hero form.asking input { color: var(--grey); }

/* thinking indicator: pulsing dot before the loading message */
#askResult .ask-loading::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  margin-right: 9px;
  vertical-align: 1px;
}
@media (prefers-reduced-motion: no-preference) {
  #askResult .ask-loading::before { animation: ask-pulse 1.1s ease-in-out infinite; }
  @keyframes ask-pulse {
    0%, 100% { opacity: 0.35; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
  }
}
.ask-hint {
  font-size: 13px;
  color: var(--faint);
  margin-top: 10px;
  text-align: center;
}
#askResult { margin-top: 26px; }
#askResult .ask-loading { color: var(--grey); font-size: 15px; text-align: center; }
#askResult .ask-error { color: var(--grey); font-size: 15px; }
.ask-answer {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 17px;
}
.ask-answer p { margin-bottom: 14px; }
.ask-sources { margin-top: 18px; }
.ask-sources .label { font-size: 15px; font-weight: 600; color: var(--grey); margin-bottom: 10px; }
.src-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 10px;
  text-decoration: none;
}
.src-card .src-head { display: block; font-size: 15px; font-weight: 600; }
.src-card .src-num { color: var(--faint); font-variant-numeric: tabular-nums; }
.src-card blockquote {
  margin: 8px 0 0;
  padding-left: 14px;
  border-left: 2px solid var(--line);
  font-size: 15px;
  line-height: 1.55;
  color: var(--grey);
}
.src-card .src-link { display: block; margin-top: 10px; font-size: 14px; color: var(--grey); }
.src-card:hover .src-link { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.ask-sources a { color: var(--grey); }
.ask-sources a:hover { color: var(--ink); }
.ask-meta { font-size: 13px; color: var(--faint); margin-top: 10px; }
@media (max-width: 480px) {
  .ask-hero input { font-size: 15px; padding: 13px 14px; }
}

/* random episode link (sidebar) */
.random-ep {
  display: block;
  font-size: 14px;
  color: var(--grey);
  text-decoration: none;
  margin: -10px 0 18px;
}
.random-ep:hover { color: var(--ink); }

/* now-playing equalizer — replaces the episode number in the sidebar TOC */
.eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}
.eq span {
  width: 3px;
  background: var(--blue);
  border-radius: 1px;
  animation: eq-bounce 1.1s ease-in-out infinite;
}
.eq span:nth-child(1) { height: 7px; animation-delay: 0s; }
.eq span:nth-child(2) { height: 12px; animation-delay: 0.25s; }
.eq span:nth-child(3) { height: 9px; animation-delay: 0.5s; }
@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}
.eq span { transform-origin: bottom; }
@media (prefers-reduced-motion: reduce) {
  .eq span { animation: none; }
}

/* reading progress hairline (long pages only; element lives outside <body>) */
#read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #3d849c;   /* brand accent — same in every theme */
  z-index: 9998;
  pointer-events: none;
}

/* finish reveal — tags + recommendations fade up as you reach them */
@media (prefers-reduced-motion: no-preference) {
  .ep-after.pre-reveal { opacity: 0; transform: translateY(14px); }
  .ep-after.reveal { opacity: 1; transform: none; transition: opacity 0.5s ease, transform 0.5s ease; }
}

/* hover micro-interactions */
@media (prefers-reduced-motion: no-preference) {
  .index-item .num, .ep-toc .n { transition: transform 0.18s ease, color 0.18s ease; }
  .index-item:hover .num { transform: translateX(4px); color: var(--blue); }
  .ep-toc a:hover .n { transform: translateX(3px); }
  .tag { transition: transform 0.15s ease, border-color 0.15s ease; }
  .tag:hover { transform: translateY(-1px); }
  .listen-row a, .cta-links a, .section-head a, .random-ep { transition: transform 0.15s ease, color 0.15s ease; }
  .listen-row a:hover, .cta-links a:hover, .section-head a:hover, .random-ep:hover { transform: translateX(2px); }
}
.turnhead .tc { position: relative; }
.turnhead .tc::before {
  content: '▶';
  position: absolute;
  left: -13px;
  top: 1px;
  font-size: 8px;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.turnhead .tc:hover::before { opacity: 1; }

/* ---------- mobile pass (audit 2026-07-05) ---------- */

/* long titles/URLs must wrap, never scroll sideways */
.turn p, .ep-toc .t, .essay-body p, .transcript > p { overflow-wrap: anywhere; }
.essay-head h1, .more-label, .more-eps .index-item h2 { overflow-wrap: break-word; }
.sources ol.refs li { overflow-wrap: anywhere; }

/* touch devices: timecodes become visible tappable chips */
@media (hover: none) {
  .turnhead .tc {
    color: var(--blue);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 3px 9px;
    display: inline-flex;
    align-items: center;
  }
  .turnhead .tc::before {
    content: '▶';
    position: static;
    font-size: 9px;
    margin-right: 5px;
    opacity: 1;
  }
}

@media (max-width: 760px) {
  .more-eps .index-item { grid-template-columns: 1fr; gap: 8px; padding: 20px 4px; }
}

@media (max-width: 640px) {
  #bpm-minibar .mb-rate {
  background: none;
  border: none;
  color: inherit;
  font: 600 12px 'Inter', sans-serif;
  letter-spacing: 0.03em;
  cursor: pointer;
  opacity: 0.75;
  padding: 4px 2px;
  white-space: nowrap;
}
#bpm-minibar .mb-rate:hover { opacity: 1; }
#bpm-minibar .mb-next {
  font-size: 13px;
  color: var(--faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}
#bpm-minibar .mb-time { cursor: pointer; }
@media (max-width: 900px) {
  #bpm-minibar .mb-next { display: none; }
}

#bpm-minibar { padding: 0 12px; gap: 10px; }
  #bpm-minibar .mb-title { max-width: 50%; }
  .nav-links a { padding: 6px 0; }
}

@media (max-width: 480px) {
  .pull blockquote { font-size: 20px; }
  .pull { padding: 0 4px; }
  .player { padding: 14px 16px; gap: 12px; }
  .essay-body, .sources, .next-card, .ep-after,
  .hero-illo, .hero, .index-list, .land-list {
    padding-left: 20px; padding-right: 20px;
  }
}

/* mobile TOC collapses behind a summary toggle */
details.ep-toc-collapse > summary {
  display: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 0;
  list-style: none;
}
details.ep-toc-collapse > summary::-webkit-details-marker { display: none; }
details.ep-toc-collapse > summary::after { content: ' ▾'; color: var(--faint); }
details.ep-toc-collapse[open] > summary::after { content: ' ▴'; }
@media (max-width: 900px) {
  details.ep-toc-collapse > summary { display: block; }
}
.pod-main .site-footer .inner { max-width: none; }

@media (max-width: 900px) {
  .pod-layout { grid-template-columns: 1fr; }
  .pod-side { position: static; height: auto; overflow-y: visible; border-right: none; border-bottom: 1px solid var(--line); }
}

/* ---------- playbook series ---------- */

.ep-toc .group {
  font-size: 14px;
  font-weight: 600;
  color: var(--faint);
  padding: 18px 0 6px;
  display: block;
}
.chapter-illo { text-align: center; margin: 56px auto 0; }

/* ---------- provenance badges ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--grey);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 2px 12px;
  vertical-align: middle;
  white-space: nowrap;
}
.badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; flex: none; }
.badge.human::before { background: var(--blue); }
.badge.ai::before { background: var(--blue); }
.byline .badge { margin-left: 10px; }
h2 .badge { margin-left: 10px; }
.hero-badge { margin-top: 20px; }

/* ---------- accent treatment (HBR-style placements, house cyan) ---------- */

.hero .kicker, .essay-head .kicker {
  color: var(--blue);
  font-weight: 600;
}
.essay-head .kicker .status { color: var(--ink); }

.cta-links a, .listen-row a, .land-about a.more { border-bottom: 2px solid var(--blue); }

.index-item:hover h2 {
  text-decoration-color: var(--blue);
  text-decoration-thickness: 2px;
}

.next-card a:hover { border-color: var(--blue); }

/* ---------- full transcripts + audio ---------- */

.transcript-meta {
  font-size: 15px;
  color: var(--faint);
  margin: -6px 0 26px;
}

.transcript > p {
  font-size: 17px;
  line-height: 1.75;
  color: #2b2b2b;
  margin-bottom: 24px;
}

.transcript .pull { margin: 48px 0; }

.ep-audio {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 28px auto 0;
  height: 40px;
}

/* ---------- speaker-labelled transcripts ---------- */

.transcript h3 {
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.015em;
  margin: 48px 0 8px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.transcript .turn { margin: 28px 0; }

.turnhead {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.turnhead .speaker { font-weight: 600; font-size: 15px; }
.turn.host .speaker { color: var(--grey); }
.turn.guest .speaker { color: var(--ink); }
.turnhead .tc {
  display: none !important; /* disabled 2026-07-05: timecodes drift vs audio on edited narration turns — see RUNBOOK "Timecodes" note */
  font-size: 14px;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
  cursor: pointer;
}
.turnhead .tc:hover { color: var(--blue); text-decoration: underline; }

.turn p { font-size: 17px; line-height: 1.75; color: #2b2b2b; margin: 0 0 14px; }
.turn p:last-child { margin-bottom: 0; }

.ep-embed {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 28px auto 0;
  border: 0;
  border-radius: 8px;
}

/* ---------- BPM brand type in the podcast section ---------- */

.podcast .essay-head h1,
.podcast .ep-body h2,
.podcast .transcript h3,
.podcast .side-title,
.podcast .essay-head .kicker,
.podcast .more-label {
  font-family: 'Science Gothic', 'Inter', sans-serif;
  letter-spacing: 0.01em;
}
.podcast .essay-head h1 { letter-spacing: 0.005em; }
/* house rule: display type set in Science Gothic is ALWAYS CAPS */
.podcast .essay-head h1,
.podcast .ep-body h2,
.podcast .transcript h3,
.podcast .more-label,
.guest-list h2 {
  text-transform: uppercase;
}

.pod-side .bpm-side-logo { height: 72px; }
.podcast .brand-name { text-transform: uppercase; letter-spacing: 0.04em; }

/* ---------- transcript spacing fixes ---------- */

.transcript { padding-top: 26px; }
.transcript-meta { margin: -4px 0 20px; }
.transcript h3:first-child { border-top: none; padding-top: 0; margin-top: 0; }

/* ---------- bottom tags + recommendations ---------- */

.ep-after {
  max-width: 680px;
  margin: 72px auto 0;
  padding: 28px 32px 0;
  border-top: 1px solid var(--line);
}
.ep-after > .tags { margin-bottom: 44px; }
.more-label { font-weight: 600; font-size: 21px; letter-spacing: -0.015em; margin-bottom: 4px; }
.more-eps .index-item { grid-template-columns: 52px 1fr 130px; gap: 24px; padding: 22px 4px; }
.more-eps .index-item h2 { font-size: 20px; margin-bottom: 4px; }
.more-eps .index-item .guest { font-size: 15px; }

/* ---------- failure CV ---------- */

.fail-cv { list-style: none; margin-top: 4px; }
.fail-cv li { padding: 16px 0; border-top: 1px solid var(--line); font-size: 17px; line-height: 1.6; }
.fail-cv b { font-weight: 600; }
.fail-cv .year { color: var(--faint); font-size: 15px; margin-left: 10px; }

/* ---------- custom episode player ---------- */

.player {
  max-width: 560px;
  margin: 30px auto 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.player .pp, #bpm-minibar .mb-pp {
  width: 44px; height: 44px;
  flex: none;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.player .pp svg { fill: var(--ink); margin-left: 2px; }
.player .pp .i-pause { margin-left: 0; }

.player .pmeta { flex: 1; min-width: 0; }
.player .ptitle {
  font-weight: 600;
  font-size: 15px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player .pbar { height: 3px; background: var(--line); border-radius: 2px; margin-top: 10px; cursor: pointer; }
.player .pfill { height: 100%; width: 0; background: var(--blue); border-radius: 2px; }
.player .ptime { font-size: 14px; color: var(--faint); margin-top: 6px; display: block; font-variant-numeric: tabular-nums; }

/* ---------- persistent mini bar ---------- */

#bpm-minibar .mb-rate {
  background: none;
  border: none;
  color: inherit;
  font: 600 12px 'Inter', sans-serif;
  letter-spacing: 0.03em;
  cursor: pointer;
  opacity: 0.75;
  padding: 4px 2px;
  white-space: nowrap;
}
#bpm-minibar .mb-rate:hover { opacity: 1; }
#bpm-minibar .mb-next {
  font-size: 13px;
  color: var(--faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}
#bpm-minibar .mb-time { cursor: pointer; }
@media (max-width: 900px) {
  #bpm-minibar .mb-next { display: none; }
}

#bpm-minibar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  height: 62px;
  background: #16181a;
  border-top: 1px solid #2c3134;
  color: #e9eef0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
  font-family: 'Inter', sans-serif;
}
#bpm-minibar[hidden] { display: none; }
#bpm-minibar .mb-pp { width: 36px; height: 36px; border-color: #cbdfe6; }
#bpm-minibar .mb-pp svg { fill: #cbdfe6; margin-left: 2px; }
#bpm-minibar .mb-pp .i-pause { margin-left: 0; }
#bpm-minibar .mb-title {
  font-size: 14px;
  font-weight: 600;
  color: #e9eef0;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 34%;
}
#bpm-minibar .mb-title:hover { color: #cbdfe6; }
#bpm-minibar .mb-bar { flex: 1; height: 3px; background: #33383b; border-radius: 2px; cursor: pointer; }
#bpm-minibar .mb-fill { height: 100%; width: 0; background: #cbdfe6; border-radius: 2px; }
#bpm-minibar .mb-time { font-size: 13px; color: #8a959b; font-variant-numeric: tabular-nums; white-space: nowrap; }
#bpm-minibar .mb-close {
  background: none; border: none; cursor: pointer;
  color: #8a959b; font-size: 21px; line-height: 1; padding: 4px;
}
#bpm-minibar .mb-close:hover { color: #fff; }

body.has-mini { padding-bottom: 84px; }

@media (max-width: 640px) {
  #bpm-minibar .mb-time { display: none; }
}

#bpm-minibar .mb-spotify {
  font-size: 13px;
  color: #8a959b;
  text-decoration: none;
  border-bottom: 1px solid #3a4144;
  padding-bottom: 1px;
  white-space: nowrap;
}
#bpm-minibar .mb-spotify:hover { color: #cbdfe6; border-bottom-color: #cbdfe6; }
@media (max-width: 760px) { #bpm-minibar .mb-spotify { display: none; } }

/* ---------- guest sketches (inline SVG, color follows theme) ---------- */

.guest-sketch { width: 200px; margin: 0 auto 14px; color: var(--ink); }
.guest-sketch svg { width: 100%; height: auto; display: block; }

/* ---------- transcript search ---------- */

.pod-search { margin: 28px 0 22px; }
.pod-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 15px;
  padding: 9px 13px;
  outline: none;
  background: transparent;
  color: var(--ink);
}
.pod-search input:focus { border-color: var(--blue); }
.pod-search input::placeholder { color: var(--faint); }

#podSearchResults .s-result {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}
#podSearchResults .s-result:first-child { border-top: none; }
#podSearchResults .s-title { display: block; font-size: 15px; font-weight: 600; line-height: 1.35; }
#podSearchResults .s-result:hover .s-title { color: var(--blue); }
#podSearchResults .s-hits { font-weight: 500; font-size: 13px; color: var(--faint); margin-left: 8px; }
#podSearchResults .s-snip { display: block; font-size: 14px; color: var(--grey); margin-top: 3px; line-height: 1.55; }
#podSearchResults mark { background: none; color: var(--blue); font-weight: 600; }
#podSearchResults .s-none { font-size: 14px; color: var(--grey); padding: 10px 0; }

/* badge on essay list rows */
.row-badge { margin-top: 12px; }

/* minimal page title (essays index) */
.page-head { max-width: 880px; margin: 64px auto 0; padding: 0 32px; }
.page-head h1 { font-weight: 600; font-size: 40px; letter-spacing: -0.03em; }
.index-list { margin-top: 28px; }

/* linked guest name in the chip */
.voice-chip .name a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--line); }
.voice-chip .name a:hover { border-bottom-color: var(--blue); }

/* ---------- charts (generated by tools/build_charts.py) ----------
   Inline SVGs that inherit the page theme via CSS variables: grid/axes use
   --line/--faint, text uses --grey/--ink, series use --chart-1/--chart-2.
   Never hand-position chart pixels — regenerate through the kit. */
.figure { margin: var(--sp-7) 0 var(--sp-3); }
.figure svg { width: 100%; height: auto; display: block; }
.figure figcaption {
  font-size: 13px;
  color: var(--faint);
  line-height: 1.5;
  margin-top: var(--sp-3);
  max-width: 62ch;
}
.figure .chart-axis   { stroke: var(--line); }
.figure .chart-grid   { stroke: var(--line); }
.figure .chart-tick   { fill: var(--faint); font: 13px var(--sans); font-variant-numeric: tabular-nums; }
.figure .chart-label  { fill: var(--grey);  font: 13px var(--sans); }
.figure .chart-strong { fill: var(--ink);   font: 600 13px var(--sans); }
.figure .chart-line-1 { stroke: var(--chart-1); fill: none; }
.figure .chart-line-2 { stroke: var(--chart-2); fill: none; }
.figure .chart-dot-1  { fill: var(--chart-1); stroke: var(--paper); }
.figure .chart-dot-2  { fill: var(--chart-2); stroke: var(--paper); }
.figure .chart-dot-open-1 { fill: var(--paper); stroke: var(--chart-1); }
.figure .chart-dot-open-2 { fill: var(--paper); stroke: var(--chart-2); }
.figure .chart-legend { display: flex; gap: var(--sp-5); align-items: center;
  font-size: 13px; color: var(--grey); margin-top: var(--sp-3); }
.figure .chart-legend .swatch { display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; margin-right: 6px; vertical-align: -1px; }

/* ---------- blueprint chart mode (dark-first technical line-work) ----------
   Musty's reference (2026-08-26): thin monochrome lines, dashed construction
   geometry, Science Gothic caps callouts on elbow leaders with square caps.
   Classes are token-driven, so the same SVG inverts cleanly on light pages. */
.figure .bp-solid  { stroke: var(--ink);   fill: none; }
.figure .bp-dash   { stroke: var(--grey);  fill: none; stroke-dasharray: 5 5; }
.figure .bp-dot    { stroke: var(--faint); fill: none; stroke-dasharray: 1 5; stroke-linecap: round; }
.figure .bp-node   { fill: var(--paper);   stroke: var(--ink); }
.figure .bp-node-dim { fill: var(--paper); stroke: var(--grey); }
.figure .bp-lead   { stroke: var(--grey);  fill: none; }
.figure .bp-cap    { fill: var(--grey); }
.figure .bp-label  { fill: var(--ink); font: 600 14px 'Science Gothic', var(--sans);
                     letter-spacing: 0.12em; text-transform: uppercase; }
.figure .bp-sub    { fill: var(--faint); font: 12px 'Science Gothic', var(--sans);
                     letter-spacing: 0.1em; text-transform: uppercase; }
