/* TVREV 2.0 — Theme layer.
 * Module + layout classes translated from the v3 design components. All values
 * reference the design-system tokens in tvrev-design-system.css. Kept to
 * single-class selectors to avoid specificity collisions. */

/* ============================ LAYOUT ============================ */
.tv-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.tv-main { padding-top: var(--sp-7); }

.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: var(--sp-8);
  align-items: start;
}
.home-main { min-width: 0; }
.home-rail { min-width: 0; }

/* ============================ MASTHEAD ============================ */
.tv-masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.1) blur(8px);
  -webkit-backdrop-filter: saturate(1.1) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.tv-masthead-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 64px;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.tv-logo {
  color: var(--text-strong);
  display: flex;
  flex: none;
  align-items: center;
  text-decoration: none;
}
.tv-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; flex: none; }
.tv-tagline {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 620px) { .tv-tagline { display: none; } }
.tv-logo-svg { height: 26px; width: auto; display: block; }
.tv-nav {
  display: flex;
  gap: var(--sp-5);
  margin-left: var(--sp-3);
}
.tv-nav a {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  transition: color var(--dur-fast);
  white-space: nowrap; /* v0.8.51: wrapped labels knocked the row out of alignment with Sections */
}
.tv-nav a:hover { color: var(--text-strong); }
.tv-nav a.is-franchise { color: var(--accent-text); }
.tv-nav a.is-franchise:hover { color: var(--text-strong); }

.tv-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.tv-theme-toggle {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-xs);
  padding: 0.4rem 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: border-color var(--dur-fast) var(--ease-std), color var(--dur-fast);
}
.tv-theme-toggle:hover { border-color: var(--text-strong); color: var(--text-strong); }

/* v0.8.50: search trigger — same mono-chip language as the theme toggle;
   opens Ghost native search (sodo) via data-ghost-search */
.tv-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-xs);
  padding: 0.4rem 0.45rem;
  color: var(--text-muted);
  transition: border-color var(--dur-fast) var(--ease-std), color var(--dur-fast);
}
.tv-search-btn:hover { border-color: var(--text-strong); color: var(--text-strong); }
/* v0.8.54: magnifier drawn in CSS (inline SVG failed to render on Ghost(Pro)) */
.tv-search-glyph {
  position: relative;
  display: block;
  width: 15px; height: 15px;
}
.tv-search-glyph::before {
  content: "";
  position: absolute;
  left: 1px; top: 1px;
  width: 9px; height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}
.tv-search-glyph::after {
  content: "";
  position: absolute;
  right: 1px; bottom: 1px;
  width: 5px; height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transform: rotate(45deg);
  transform-origin: right bottom;
}
.tv-theme-toggle .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--warm-950);
}
.theme-dark .tv-theme-toggle .dot { background: var(--signal-400); }
.tv-theme-toggle .label-dark { display: none; }
.theme-dark .tv-theme-toggle .label-light { display: none; }
.theme-dark .tv-theme-toggle .label-dark { display: inline; }

.tv-subscribe {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent-on);
  background: var(--accent);
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-xs);
  font-weight: 500;
  transition: background var(--dur-fast) var(--ease-std);
}
.tv-subscribe:hover { background: var(--accent-hover); }
.tv-subscribe:active { background: var(--accent-press); }

.tv-burger { display: none; }

/* ---- SECTIONS flyout ---- */
.tv-sections { position: relative; flex: none; }
.tv-sections-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0.4rem 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--dur-fast);
}
.tv-sections-btn:hover,
.tv-sections-btn[aria-expanded="true"] { color: var(--text-strong); }
.tv-sections-caret {
  font-size: 0.7em;
  transition: transform var(--dur-fast) var(--ease-std);
}
.tv-sections-btn[aria-expanded="true"] .tv-sections-caret { transform: rotate(180deg); }

.tv-sections-panel {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  backdrop-filter: saturate(1.1) blur(10px);
  -webkit-backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow-md);
  z-index: 45;
}
.tv-sections-panel[hidden] { display: none; }
.tv-sections-panel-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sp-6) var(--gutter) var(--sp-7);
}
/* v0.8.3 — flyout channels grouped by kind: Beats / Franchises / Library.
   Desktop: three columns. Mobile: stacked groups, one scannable column each. */
.tv-sections-cols {
  display: grid;
  /* v0.8.46: four groups — Beats / Franchises / Series / Library */
  grid-template-columns: 1.2fr 1fr 1.3fr 1fr;
  gap: var(--sp-6) var(--sp-8);
  align-items: start;
}
.tv-flyout-group-head {
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--text-faint);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--text-strong);
}
.tv-sections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
/* v0.8.46: franchises is a short single-column list (Proximity, Marconi) —
   the old two-up inner grid is gone with the Franchises/Series split. */
.tv-flyout-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  text-decoration: none;
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--rule);
  transition: color var(--dur-fast);
}
/* first row sits directly under the group head's 2px rule — no doubled border */
.tv-sections-grid > .tv-flyout-item:first-child { border-top: 0; }
.tv-flyout-name {
  font-family: var(--font-display);
  font-weight: var(--w-display);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  transition: color var(--dur-fast);
}
.tv-flyout-item:hover .tv-flyout-name { color: var(--accent-text); }
.tv-flyout-item.is-franchise .tv-flyout-name { position: relative; padding-left: 0.9rem; }
.tv-flyout-item.is-franchise .tv-flyout-name::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.tv-flyout-count {
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
  flex: none;
}

/* ============================ SIGNAL BAR ============================ */
.tv-signalbar {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.tv-signalbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 38px;
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tv-dateline { color: var(--text-faint); flex: none; white-space: nowrap; }
.tv-signal-tagline { color: var(--text-muted); flex: none; white-space: nowrap; }
.tv-vrule { width: 1px; height: 14px; background: var(--rule); flex: none; }
.tv-brief-lane { display: contents; }
.tv-brief-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--accent-text); flex: none; font-weight: 500; white-space: nowrap;
}
.tv-brief-dot { position: relative; width: 7px; height: 7px; flex: none; }
.tv-brief-dot .core { position: absolute; inset: 0; border-radius: 50%; background: var(--accent); }
.tv-brief-dot .ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--accent); }
.tv-brief-track { position: relative; flex: 1 1 auto; min-width: 0; height: 16px; overflow: hidden; }
.tv-brief {
  position: absolute; left: 0; top: 0; right: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  letter-spacing: 0.02em; text-transform: none;
  color: var(--text-muted); text-decoration: none; line-height: 16px;
  opacity: 0; transform: translateY(3px); pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), color var(--dur-fast);
}
.tv-brief.is-on { opacity: 1; transform: none; pointer-events: auto; }
.tv-brief:hover { color: var(--text-strong); }
@media (max-width: 720px) {
  /* Signal bar: two rows — datestamp on top, The Signal on its own row below */
  .tv-signal-tagline, .tv-vrule { display: none; }
  .tv-signalbar-inner {
    height: auto;
    flex-wrap: wrap;
    row-gap: 0;
    padding-top: 8px;
    padding-bottom: 9px;
  }
  .tv-dateline { flex: 1 0 100%; }
  /* The Signal: its own full-width swimlane */
  .tv-brief-lane {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    flex: 1 0 100%;
    min-width: 0;
    margin-top: 8px;
    padding-top: 9px;
    border-top: 1px solid var(--rule);
  }
  .tv-brief-label { flex: none; }
  .tv-brief-track { height: 18px; }
  .tv-brief { line-height: 18px; }
}

@keyframes briefPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(2.4); opacity: 0; } }
@media (prefers-reduced-motion: no-preference) {
  .tv-brief-dot .ring { animation: briefPulse 2.4s var(--ease-out) infinite; }
}

/* ============================ SECTION HEAD ============================ */
.tv-sectionhead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  border-top: 2px solid var(--text-strong);
  padding-top: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.tv-sectionhead h2,
.tv-sectionhead .h {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  font-weight: 500;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--text-strong);
}
.tv-sectionhead .note {
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ============================ HERO ============================ */
.tv-hero { display: block; text-decoration: none; color: inherit; }
.tv-hero-media {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  border-radius: var(--r-md);
  background: var(--surface-alt);
  margin-bottom: var(--sp-5);
}
.tv-hero-kicker {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--accent-text);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.tv-hero-kicker::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
/* live (breaking) cover story — sync the red with the breaking bar */
.tv-hero.is-live .tv-hero-kicker { color: var(--live); }
.tv-hero.is-live .tv-hero-kicker::before { background: var(--live); }
.tv-hero-hed {
  font-family: var(--font-display);
  font-size: var(--t-display);
  font-weight: var(--w-display-hero);
  line-height: var(--lh-tight);
  letter-spacing: var(--tr-tight);
  color: var(--text-strong);
  margin: var(--sp-3) 0 0;
  text-wrap: balance;
}
.tv-hero:hover .tv-hero-hed { color: var(--accent-text); }
.tv-hero-dek {
  font-family: var(--font-body);
  font-size: var(--t-dek);
  font-style: italic;
  line-height: 1.34;
  color: var(--text-muted);
  margin: var(--sp-4) 0 0;
  max-width: 42rem;
}
.tv-hero-byline {
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: var(--sp-4);
}

/* ============================ ARTICLE CARD (featured) ============================ */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
.tv-card { display: block; text-decoration: none; color: inherit; }
.tv-card-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--r-md);
  background: var(--surface-alt);
  margin-bottom: var(--sp-4);
}
.tv-card-kicker {
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--accent-text);
  display: block;
  margin-bottom: 0.4rem;
}
.tv-card-hed {
  font-family: var(--font-display);
  font-weight: var(--w-display);
  font-size: clamp(1.4rem, 1.05rem + 1vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  margin: 0;
  text-wrap: pretty;
  transition: color var(--dur-fast) var(--ease-std);
}
.tv-card:hover .tv-card-hed { color: var(--accent-text); }
.tv-card-dek {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0.55rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tv-card-meta {
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: 0.02em;
  color: var(--text-faint);
  margin-top: 0.5rem;
}

/* ============================ ARCHIVE / FEED ROWS ============================ */
.tv-archive-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: var(--sp-5);
  align-items: baseline;
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
}
.tv-archive-date {
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  color: var(--text-faint);
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding-top: 0.2rem;
}
.tv-archive-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 0.35rem;
}
.tv-archive-hed {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--w-display);
  font-size: 1.3rem;
  line-height: 1.16;
  letter-spacing: -0.01em;
  text-wrap: pretty;
  color: var(--text-strong);
  transition: color var(--dur-fast) var(--ease-std);
}
.tv-archive-row:hover .tv-archive-hed { color: var(--accent-text); }
.tv-archive-read {
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  color: var(--text-faint);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: right;
  padding-top: 0.2rem;
}

/* ============================ "MORE →" LINK ============================ */
.tv-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-text);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-std);
}
.tv-more .arr { transition: transform var(--dur-fast) var(--ease-out); }
.tv-more:hover { color: var(--accent-hover); }
.tv-more:hover .arr { transform: translateX(3px); }
.tv-more-wrap {
  border-top: 1px solid var(--rule);
  padding-top: var(--sp-5);
  margin-top: var(--sp-1);
}

/* ============================ RIGHT RAIL UNITS ============================ */
.tv-unit { margin-bottom: var(--sp-8); }
.tv-unithead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  border-top: 2px solid var(--text-strong);
  padding-top: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.tv-unithead .h {
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  font-weight: 500;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--text-strong);
}

.tv-mostread-row {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: var(--sp-3);
  align-items: baseline;
  text-decoration: none;
  color: inherit;
  padding-top: var(--sp-4);
  margin-top: var(--sp-4);
  border-top: 1px solid var(--rule);
}
.tv-mostread-row:first-child {
  padding-top: 0; margin-top: 0; border-top: none;
}
.tv-mostread-num {
  font-family: var(--font-display);
  font-weight: var(--w-display-light);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--text-faint);
  transition: color var(--dur-fast) var(--ease-std);
}
.tv-mostread-row:hover .tv-mostread-num { color: var(--accent-text); }
.tv-mostread-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 0.3rem;
}
.tv-mostread-hed {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--w-display);
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  text-wrap: pretty;
  transition: color var(--dur-fast) var(--ease-std);
}
.tv-mostread-row:hover .tv-mostread-hed { color: var(--accent-text); }

/* Browse-by-topic chips */
.tv-topics { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tv-topic {
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-xs);
  padding: 0.35rem 0.6rem;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.tv-topic:hover { color: var(--text-strong); border-color: var(--text-strong); }

/* Top Commercials rail host spacing */
.top-commercials { margin: 0 auto; }

/* ============================ ARTICLE (post) ============================ */
.tv-article { padding: var(--sp-8) 0; }
.tv-article-head { max-width: var(--measure-wide); margin: 0 auto; }
.tv-article-kicker {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--accent-text);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.tv-article-kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}
.tv-article-title {
  font-family: var(--font-display);
  font-size: var(--t-display);
  font-weight: var(--w-display-hero);
  line-height: var(--lh-tight);
  letter-spacing: var(--tr-tight);
  color: var(--text-strong);
  margin: var(--sp-3) 0 0;
  text-wrap: balance;
}
.tv-article-dek {
  font-family: var(--font-body);
  font-size: var(--t-dek);
  font-style: italic;
  line-height: 1.34;
  color: var(--text-muted);
  margin: var(--sp-4) 0 0;
}
.tv-article-byline {
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: var(--sp-5) 0 0;
  padding-bottom: var(--sp-5);
  border-bottom: 2px solid var(--rule-ink);
}
.tv-article-feature {
  width: 100%;
  max-width: var(--measure-wide);
  margin: var(--sp-7) auto 0;
  border-radius: var(--r-md);
  display: block;
}
.tv-article-body {
  margin: var(--sp-7) auto 0;
}
/* full-bleed-ish chart/figure breakout inside prose on wide screens */
@media (min-width: 1024px) {
  .tv-article-body .kg-width-wide,
  .tv-article-body .kg-width-full { max-width: var(--measure-wide); }
}

/* ============================ ARTICLE + RAIL LAYOUT ============================ */
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: var(--sp-8);
  align-items: start;
}
.article-col { min-width: 0; max-width: var(--measure-wide); }
.article-rail { min-width: 0; }
/* article page: left-justified header/body (override the centered defaults) */
.article-grid .tv-article-head,
.article-grid .tv-article-feature,
.article-grid .tv-article-body { margin-left: 0; margin-right: 0; }

/* ---- shared rail card ---- */
.rail-card {
  /* v0.9.4: unified with the homepage rail (Geoff, Sep 2). The story rail used
     to carry a white surface, a shadow AND a coloured top bar — three
     treatments the design guide rules out ("a card has a hairline border OR a
     shadow, never both, and never a coloured border accent"). It now matches
     .tv-marconi-card: warm sunken fill, one emphasis hairline, no shadow. */
  background: var(--surface-alt);
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: var(--sp-6);
}
.theme-dark .rail-card { box-shadow: 0 1px 2px rgba(0,0,0,0.4), 0 16px 34px -18px rgba(0,0,0,0.7); }
.rail-card-bar { display: none; } /* v0.9.4: retired with the card unification */
.bar-accent { background: var(--accent); }
.bar-proximity { background: linear-gradient(90deg, #F7A823 0%, #F2641E 55%, #E8281E 100%); }

/* ---- 1 · Reports ---- */
.rp-media { position: relative; }
.rp-media img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.rp-badge {
  position: absolute; top: 0.7rem; left: 0.7rem;
  font-family: var(--font-mono); font-size: var(--t-mono-sm); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-on);
  background: var(--accent); padding: 0.2rem 0.5rem; border-radius: var(--r-xs);
}
.rp-body { padding: 1.2rem 1.1rem; }
.rp-label {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.7rem;
  font-family: var(--font-mono); font-size: var(--t-mono-sm); font-weight: 600;
  letter-spacing: var(--tr-label); text-transform: uppercase; color: var(--accent-text);
}
.rp-dot { width: 6px; height: 6px; background: var(--accent-text); border-radius: 50%; }
.rp-title {
  margin: 0; font-family: var(--font-display); font-weight: var(--w-display);
  font-size: 1.35rem; line-height: 1.12; letter-spacing: -0.015em; color: var(--text-strong);
  text-wrap: balance;
}
.rp-meta {
  margin-top: 0.7rem; font-family: var(--font-mono); font-size: var(--t-mono-sm);
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-muted);
}
.rp-meta span { opacity: 0.5; margin: 0 0.2rem; }
.rp-desc {
  margin: 0.85rem 0 0; font-family: var(--font-body); font-size: 0.9rem;
  line-height: 1.45; color: var(--text-muted); text-wrap: pretty;
}
.rp-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 100%;
  box-sizing: border-box; margin-top: 1rem; padding: 0.65rem 0.75rem;
  background: var(--accent); color: var(--accent-on); border-radius: var(--r-sm);
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  transition: background var(--dur-fast) var(--ease-std);
}
.rp-btn:hover { background: var(--accent-hover); }
.rp-fine {
  margin: 0.8rem 0 0; font-family: var(--font-mono); font-size: 0.6875rem;
  line-height: 1.5; color: var(--text-muted);
}
.rp-fine a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 0.15em; }

/* ---- 2 · Consult CTA ---- */
.cta-body { padding: 1.1rem 1.1rem 1.2rem; }
.cta-label--wordmark { display: block; margin-bottom: 0.35rem; color: var(--text-strong); }
.cta-label--wordmark .tv-logo-svg { height: 15px; width: auto; display: block; }

.cta-label {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem;
  font-family: var(--font-mono); font-size: var(--t-mono-sm); font-weight: 600;
  letter-spacing: var(--tr-label); text-transform: uppercase; color: var(--accent-text);
}
.cta-cal {
  width: 13px; height: 12px; border: 1.5px solid var(--accent-text); border-radius: 2px;
  position: relative; flex: none;
}
.cta-cal::before, .cta-cal::after {
  content: ""; position: absolute; top: -3px; width: 2px; height: 3px; background: var(--accent-text);
}
.cta-cal::before { left: 2px; } .cta-cal::after { right: 2px; }
.cta-title {
  margin: 0; font-family: var(--font-display); font-weight: var(--w-display);
  font-size: 1.3rem; line-height: 1.1; letter-spacing: -0.015em; color: var(--text-strong);
}
.cta-desc {
  margin: 0.45rem 0 1rem; font-family: var(--font-body); font-size: 0.92rem;
  line-height: 1.42; color: var(--text-muted); text-wrap: pretty;
}
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  width: 100%; box-sizing: border-box; padding: 0.65rem 0.75rem;
  background: var(--accent); color: var(--accent-on); border-radius: var(--r-sm);
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  transition: background var(--dur-fast) var(--ease-std);
}
.cta-btn:hover { background: var(--accent-hover); }

/* ---- 3 & 4 · Franchise cards ---- */
.fr-body { padding: 1.1rem 1.1rem 1rem; }
.fr-eyebrow {
  font-family: var(--font-mono); font-size: var(--t-mono-sm); font-weight: 600;
  letter-spacing: var(--tr-label); text-transform: uppercase; margin-bottom: 0.6rem;
}
.fr-wordmark { display: block; height: 30px; width: auto; max-width: 100%; }
/* franchise wordmarks invert on dark: dark artwork on light, light artwork on dark */
.fr-wm-dark { display: none; }
.theme-dark .fr-wm-light { display: none; }
.theme-dark .fr-wm-dark { display: block; }

/* Marconi franchise roll-up card (homepage rail) */
.tv-marconi-card {
  border: 1px solid var(--rule-strong);
  border-radius: var(--r-md);
  background: var(--surface-alt);
  padding: 1.2rem 1.1rem 1rem;
}
.tv-marconi-eyebrow {
  font-family: var(--font-mono); font-size: var(--t-mono-sm);
  letter-spacing: var(--tr-label); text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 0.5rem;
}
.tv-marconi-tagline {
  margin: 0.5rem 0 1rem; font-family: var(--font-body); font-style: italic;
  font-size: 1rem; line-height: 1.4; color: var(--text-muted); text-wrap: pretty;
}
.fr-tagline {
  margin: 0.6rem 0 0.9rem; font-family: var(--font-body); font-style: italic;
  font-size: 1rem; line-height: 1.3; color: var(--text-muted);
}
.fr-list { list-style: none; margin: 0; padding: 0; }
.fr-list li { border-top: 1px solid var(--rule); }
.fr-list a {
  display: flex; gap: 0.55rem; align-items: baseline; padding: 0.6rem 0;
  text-decoration: none; color: inherit;
}
.fr-date {
  font-family: var(--font-mono); font-size: var(--t-mono-sm); color: var(--text-faint);
  flex: none; padding-top: 0.12rem; min-width: 2.9rem;
}
.fr-hed {
  font-family: var(--font-display); font-weight: var(--w-display); font-size: 1rem;
  line-height: 1.16; letter-spacing: -0.005em; color: var(--text-strong);
  transition: color var(--dur-fast) var(--ease-std); text-wrap: pretty;
}
.fr-more {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.85rem;
  font-family: var(--font-mono); font-size: var(--t-mono-sm); letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
}
.fr-more .arr { transition: transform var(--dur-fast) var(--ease-out); }
.fr-more:hover .arr { transform: translateX(3px); }
/* franchise ink */
.fr-marconi .fr-eyebrow, .fr-marconi .fr-more { color: var(--accent-text); }
.fr-marconi .fr-list a:hover .fr-hed { color: var(--accent-text); }
.fr-proximity .fr-eyebrow, .fr-proximity .fr-more { color: #E8421E; }
.theme-dark .fr-proximity .fr-eyebrow, .theme-dark .fr-proximity .fr-more { color: #ff7a4d; }
.fr-proximity .fr-list a:hover .fr-hed { color: #E8421E; }

/* ---- 5 · The Measure ---- */
.ms-plate { background: var(--warm-950); padding: 1rem 0.9rem 0.85rem; }
.ms-wordmark { width: 100%; max-width: 200px; height: auto; display: block; }
.ms-sub {
  margin-top: 0.5rem; font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: color-mix(in srgb, var(--warm-50) 58%, transparent);
}
.ms-body { padding: 1rem 1.1rem 1.1rem; }
.ms-lede {
  margin: 0 0 0.9rem; font-family: var(--font-body); font-size: 0.92rem;
  line-height: 1.45; color: var(--text-muted); text-wrap: pretty;
}
.ms-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
.ms-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: var(--t-mono-sm); letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent-text); text-decoration: none;
}
.ms-more .arr { transition: transform var(--dur-fast) var(--ease-out); }
.ms-more:hover .arr { transform: translateX(3px); }
.ms-attr {
  font-family: var(--font-mono); font-size: var(--t-mono-sm); letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--text-faint);
}

/* ============================ TAG / CHANNEL HEAD ============================ */
.tv-channelhead {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sp-8) var(--gutter) 0;
}
.tv-channel-kicker {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--accent-text);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.tv-channel-kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}
.tv-channel-name {
  font-family: var(--font-display);
  font-size: var(--t-title);
  font-weight: var(--w-display);
  line-height: 0.98;
  letter-spacing: var(--tr-tight);
  color: var(--text-strong);
  margin: var(--sp-3) 0 0;
}
.tv-channel-desc {
  font-family: var(--font-body);
  font-size: var(--t-dek);
  line-height: 1.4;
  color: var(--text-muted);
  margin: var(--sp-4) 0 0;
  max-width: 46rem;
}
/* Photo strip: flattened Squarespace galleries land here as a compact mosaic
   instead of a wall of stacked images (see content cleanup in the importer) */
.tv-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: var(--sp-6) 0;
}
.tv-photo-strip img {
  width: 100%; height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
  margin: 0;
}
@media (max-width: 540px) { .tv-photo-strip { grid-template-columns: repeat(2, 1fr); } }

/* Brand franchise art (WIR, Reports): type is set left in the source image —
   anchor crops left so tighter aspect ratios never clip the wordmark */
.tv-media--brand { object-position: left center; }

/* WIR live issue indicia — the theme sets the issue number (ISO week · year)
   in the slot Design reserved top-right; the baked placeholder was removed
   from the asset. Positioned against the frame, so it survives any crop. */
.tv-wir-plate { position: relative; margin: 0; }
.tv-wir-issue {
  position: absolute; top: 8%; right: 4.5%;
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.92);
  pointer-events: none;
}

/* Report-excerpt posts: report title typeset over the lead art (theme-owned,
   never baked into the image). Scrim guarantees contrast on light covers. */
.tv-report-plate {
  position: relative;
  margin: var(--sp-7) auto 0;
  max-width: var(--measure-wide);
  border-radius: var(--r-md);
  overflow: hidden;
}
.tv-report-plate .tv-article-feature { display: block; width: 100%; margin: 0; max-width: none; }
.article-grid .tv-report-plate { margin-left: 0; margin-right: 0; }
/* hero variant (homepage / tag lead) */
.tv-report-plate--hero { margin: 0 0 var(--sp-5); max-width: none; }
.tv-report-plate--hero .tv-hero-media { margin-bottom: 0; display: block; }
/* card variant — same plate, scaled down for the 16:10 card crop */
.tv-report-plate--card { margin: 0 0 var(--sp-4); max-width: none; }
.tv-report-plate--card .tv-card-media { margin: 0; display: block; }
.tv-report-plate--card .tv-report-plate-cap {
  padding: 1.8rem 0.9rem 0.65rem;
  gap: 2px;
}
.tv-report-plate--card .tv-report-plate-kicker { font-size: 0.55rem; }
.tv-report-plate--card .tv-report-plate-title { font-size: 1.05rem; }
.tv-report-plate-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: var(--sp-7) var(--sp-5) var(--sp-4);
  /* tonal navy scrim — deepens the art's own color instead of dropping soot on it */
  background: linear-gradient(180deg, rgba(9,20,84,0) 0%, rgba(9,20,84,0.38) 42%, rgba(6,14,62,0.82) 100%);
}
.tv-report-plate-kicker {
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: rgba(245,241,232,0.75);
}
.tv-report-plate-title {
  font-family: var(--font-display);
  font-weight: var(--w-display);
  font-size: clamp(1.5rem, 1rem + 2.2vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: var(--tr-tight);
  color: #f5f1e8;
}
@media (max-width: 540px) {
  .tv-report-plate-cap { padding: var(--sp-6) var(--sp-4) var(--sp-3); }
}

/* Franchise channel heads (Marconi, Proximity): wordmark replaces the h1 text.
   .logo-ink / .logo-paper swap is handled by the global theme-dark rules. */
.tv-channel-name--logo { line-height: 1; }
.tv-channel-logo {
  height: clamp(2.4rem, 6vw, 3.6rem);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.tv-channel-rule {
  border: 0;
  border-top: 2px solid var(--text-strong);
  margin: var(--sp-6) 0 0;
}

/* ============================ NEWSLETTER (feature panel) ============================ */
.tv-newsletter {
  background: var(--feature-surface);
  color: var(--feature-text);
  border: 1px solid var(--feature-border);
  border-radius: var(--r-md);
  padding: var(--sp-6);
}
.tv-newsletter .eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--feature-eyebrow);
}
.tv-newsletter .hed {
  font-family: var(--font-display);
  font-weight: var(--w-display);
  font-size: var(--t-h3);
  line-height: 1.1;
  margin: var(--sp-2) 0 0;
}
.tv-newsletter .sub {
  font-size: var(--t-body-sm);
  color: var(--feature-muted);
  margin: var(--sp-2) 0 var(--sp-4);
}
.tv-newsletter .cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-on);
  background: var(--accent);
  padding: 0.6rem 1rem;
  border-radius: var(--r-xs);
  text-decoration: none;
  transition: background var(--dur-fast);
}
.tv-newsletter .cta:hover { background: var(--accent-hover); }

/* ============================ FOOTER ============================ */
.tv-footer {
  border-top: 2px solid var(--rule-ink);
  margin-top: var(--sp-10);
  background: var(--bg);
}
.tv-footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sp-8) var(--gutter);
}
.tv-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-6);
}
.tv-footer-brand .tv-logo { font-size: 1.35rem; }
.tv-footer-tag {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--text-muted);
  margin-top: var(--sp-3);
  max-width: 22rem;
}
.tv-footer-col h4 {
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 var(--sp-4);
}
.tv-footer-col a {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.2rem 0;
  transition: color var(--dur-fast);
}
.tv-footer-col a:hover { color: var(--text-strong); }
.tv-footer-base {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--sp-5) var(--gutter);
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: var(--sp-4);
  font-family: var(--font-mono);
  font-size: var(--t-mono-sm);
  letter-spacing: 0.02em;
  color: var(--text-faint);
}

/* ============================ PAGINATION ============================ */
.tv-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--rule);
}
.tv-pagination a, .tv-pagination span {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-text);
  text-decoration: none;
}
.tv-pagination .disabled { color: var(--text-faint); }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  .home-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .home-rail {
    border-left: none; padding-left: 0;
    border-top: 2px solid var(--text-strong); padding-top: var(--sp-6);
  }
  .featured-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .article-col { max-width: none; }
  .article-rail { border-top: 2px solid var(--text-strong); padding-top: var(--sp-6); }
}
@media (max-width: 760px) {
  .tv-nav { display: none; }

  /* Flyout on mobile: stacked groups, one column, scrollable, finger-sized rows */
  .tv-sections-panel {
    max-height: calc(100dvh - 56px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .tv-sections-cols { grid-template-columns: 1fr; gap: var(--sp-7); }
  .tv-flyout-item { padding: 0.8rem 0; }
  .tv-flyout-name { font-size: 1.3rem; }
  .tv-footer-grid { grid-template-columns: 1fr 1fr; row-gap: var(--sp-6); }

  /* Compact masthead: one row, nothing falls off the edge */
  .tv-masthead-inner { height: 56px; gap: var(--sp-4); }
  .tv-brand { min-width: 0; flex: 0 1 auto; overflow: hidden; }
  .tv-brand .tv-logo svg { height: 26px; width: auto; max-width: 100%; }
  .tv-brand .tv-logo-druk { height: 30px; }
  .tv-actions { gap: var(--sp-2); flex: none; }
  /* Theme toggle collapses to icon-only */
  .tv-theme-toggle { padding: 0.45rem; }
  .tv-theme-toggle .label-light, .tv-theme-toggle .label-dark { display: none; }
  .tv-subscribe { padding: 0.5rem 0.7rem; white-space: nowrap; }
  .tv-sections-btn { white-space: nowrap; }
}
@media (max-width: 360px) {
  /* Very narrow: toggle moves to the flyout tier of priorities */
  .tv-theme-toggle { display: none; }
}
@media (max-width: 720px) {
  .tv-hero-hed { font-size: clamp(2.1rem, 1.4rem + 3vw, 3rem); }
  .tv-footer-base { flex-direction: column; }
}

/* ============================ BREAKING BANNER ============================ */
.tv-breaking { background: var(--warm-1000); color: var(--warm-50); border-bottom: 1px solid rgba(255,255,255,0.08); }
.theme-dark .tv-breaking { background: #000; }
.tv-breaking-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  min-height: 44px; display: flex; align-items: center; gap: var(--sp-5);
}
.brk-label {
  display: inline-flex; align-items: center; gap: 0.5rem; flex: none;
  font-family: var(--font-mono); font-size: var(--t-mono-sm); font-weight: 600;
  letter-spacing: var(--tr-label); text-transform: uppercase; color: var(--live);
}
.brk-dot { position: relative; width: 8px; height: 8px; flex: none; }
.brk-dot .core { position: absolute; inset: 0; border-radius: 50%; background: var(--live); }
.brk-dot .ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--live); }
/* v0.8.14 — continuous symmetric radiation: two rings on offset phases so one
   is always mid-ripple (no dead gap), plus a slow breathing core. */
@keyframes brkPulse {
  0%   { transform: scale(0.9); opacity: 0.75; }
  70%  { opacity: 0.18; }
  100% { transform: scale(2.6); opacity: 0; }
}
@keyframes brkBreathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.18); }
}
@media (prefers-reduced-motion: no-preference) {
  .brk-dot .ring  { animation: brkPulse 2.8s var(--ease-out) infinite; }
  .brk-dot .ring2 { animation: brkPulse 2.8s var(--ease-out) 1.4s infinite; opacity: 0; }
  .brk-dot .core  { animation: brkBreathe 2.8s ease-in-out infinite; }
}
.brk-div { width: 1px; height: 16px; background: rgba(255,255,255,0.15); flex: none; }
.brk-track { position: relative; flex: 1 1 auto; min-width: 0; height: 24px; }
.brk-item {
  position: absolute; inset: 0; display: flex; align-items: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-family: var(--font-display); font-weight: var(--w-display);
  font-size: 1.05rem; letter-spacing: -0.005em; line-height: 1.1;
  color: var(--warm-50); text-decoration: none;
  opacity: 0; transition: opacity var(--dur-med) var(--ease-std); pointer-events: none;
}
.brk-item.is-on { opacity: 1; pointer-events: auto; }
.brk-item:hover { color: #9fb3ff; }
.brk-clock {
  flex: none; font-family: var(--font-mono); font-size: var(--t-mono-sm);
  letter-spacing: 0.08em; color: rgba(245,241,232,0.55); font-variant-numeric: tabular-nums; white-space: nowrap;
}
.brk-dots { display: flex; gap: 0.35rem; flex: none; }
.brk-tick { width: 6px; height: 6px; padding: 0; border: 0; border-radius: 50%; cursor: pointer; background: rgba(255,255,255,0.25); }
.brk-tick.is-on { background: var(--warm-50); }
@media (max-width: 760px) { .brk-div, .brk-clock, .brk-dots { display: none; } }

/* ============================ DATA CALLOUT ============================ */
.tv-datacallout { border: 1px solid var(--rule-strong); border-radius: var(--r-md); overflow: hidden; }
.dc-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid var(--rule);
}
.dc-title { font-family: var(--font-display); font-weight: var(--w-display); font-size: 1.15rem; letter-spacing: -0.01em; color: var(--text-strong); }
.dc-source { font-family: var(--font-mono); font-size: var(--t-mono-sm); letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-faint); }
.dc-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.dc-stat { padding: var(--sp-5); border-right: 1px solid var(--rule); }
.dc-stat:last-child { border-right: none; }
.dc-val { font-family: var(--font-display); font-weight: var(--w-display-hero); font-size: 2.6rem; line-height: 1; letter-spacing: -0.02em; color: var(--text-strong); }
.dc-unit { color: var(--accent-text); font-size: 0.5em; margin-left: 0.1em; }
.dc-label { margin-top: var(--sp-3); font-family: var(--font-mono); font-size: var(--t-mono-sm); line-height: 1.4; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text-muted); }
.dc-delta { margin-top: var(--sp-2); font-family: var(--font-mono); font-size: var(--t-mono-sm); color: var(--pos-600); }
/* Data-moment sponsor attribution: DATA BY [The Measure] — right-justified, links out */
.dc-sponsor {
  display: flex; align-items: center; justify-content: flex-end; gap: 0.55rem;
  padding: 0.6rem var(--sp-5); border-top: 1px solid var(--rule);
  text-decoration: none; background: var(--bg);
}
.dc-sponsor-label {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: var(--tr-kicker); text-transform: uppercase; color: var(--text-faint);
}
.dc-sponsor-wm { display: inline-flex; align-items: center; color: var(--text-strong); transition: color var(--dur-fast); }
.dc-sponsor:hover .dc-sponsor-wm { color: var(--accent-text); }
/* Rail sponsored slot */
.tv-adslot { display: block; text-decoration: none; }
.tv-adslot img { display: block; width: 100%; border-radius: var(--r-md); border: 1px solid var(--rule); }
.tv-adslot-label {
  display: block; font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: var(--tr-kicker); text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 0.4rem;
}
@media (max-width: 720px) { .dc-grid { grid-template-columns: 1fr; } .dc-stat { border-right: none; border-bottom: 1px solid var(--rule); } .dc-stat:last-child { border-bottom: none; } }

/* ============================ LOGO WORDMARK (Original vector default + Druk / Archivo, all with blue V) ============================ */
.tv-logo-img { height: 30px; width: auto; display: block; }
.tv-logo-druk { height: 42px; }
.logo-paper { display: none; }
.theme-dark .logo-ink { display: none; }
.theme-dark .logo-paper { display: block; }
.tv-footer-brand .tv-logo-img { height: 34px; }
.tv-footer-brand .tv-logo-druk { height: 46px; }
.tv-footer-brand .tv-logo-svg { height: 30px; }

/* ============================ iSpot Top Commercials — embed (mothership iframe) ============================ */
.tv-ad-label { font-family: var(--font-mono); font-size: var(--t-mono-sm, .6875rem); letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--sp-2); }

/* footer tagline (mono, under the logo) */
.tv-footer-tagline { font-family: var(--font-mono); font-size: var(--t-mono-sm, .6875rem);
  letter-spacing: .06em; text-transform: uppercase; color: var(--text-faint);
  margin: var(--sp-3) 0 0; max-width: 22ch; line-height: 1.5; }

/* ============================ Embeds: full column width ============================
   Squarespace-era imports carry hardcoded iframe sizes (YouTube at 200x113, fixed
   Libsyn players). Video embeds get the full text column + locked 16:9; audio
   players get full width but KEEP their natural slim height. */
.tv-article-body iframe,
.tv-article-body .kg-embed-card iframe,
.tv-article-body embed,
.tv-article-body object,
.tv-article-body video {
  width: 100% !important;
  max-width: 100%;
  display: block;
  border: 0;
}
/* video providers: lock 16:9 and let height follow width */
.tv-article-body iframe[src*="youtube.com"],
.tv-article-body iframe[src*="youtube-nocookie.com"],
.tv-article-body iframe[src*="youtu.be"],
.tv-article-body iframe[src*="player.vimeo.com"],
.tv-article-body iframe[src*="wistia"],
.tv-article-body iframe[src*="dailymotion.com"],
.tv-article-body iframe[src*="fast.wistia"],
.tv-article-body video {
  aspect-ratio: 16 / 9;
  height: auto !important;
  background: var(--surface-alt);
  border-radius: var(--r-sm, 4px);
}
/* audio providers: full width, natural (attribute) height — do not stretch */
.tv-article-body iframe[src*="libsyn.com"],
.tv-article-body iframe[src*="spotify.com"],
.tv-article-body iframe[src*="soundcloud.com"],
.tv-article-body iframe[src*="megaphone.fm"],
.tv-article-body iframe[src*="simplecast.com"],
.tv-article-body iframe[src*="omny.fm"],
.tv-article-body iframe[src*="podcasts.apple.com"],
.tv-article-body audio {
  aspect-ratio: auto;
  border-radius: var(--r-sm, 4px);
}
.tv-article-body audio { width: 100%; }
/* embeds breathe like figures */
.tv-article-body iframe,
.tv-article-body video,
.tv-article-body audio { margin: var(--sp-6) 0; }
.tv-article-body figure iframe,
.tv-article-body figure video { margin: 0; }

/* Hot List gallery items: rebuilt image+headline pairs */
.tv-article-body figure.hl-item { margin: var(--sp-6) 0; }
.tv-article-body figure.hl-item img { width: 100%; height: auto; display: block; border-radius: var(--r-sm, 4px); }
.tv-article-body figure.hl-item figcaption {
  margin-top: var(--sp-3);
  font-family: var(--font-display);
  font-size: 1.05rem; line-height: 1.3;
  color: var(--text-strong); letter-spacing: 0;
  text-transform: none;
}
.tv-article-body figure.hl-item figcaption a { color: inherit; text-decoration: none; }
.tv-article-body figure.hl-item figcaption a:hover { color: var(--accent-text); }

/* Footer v0.6.0: sections split into two lists; brand meta links */
.tv-footer-grid { grid-template-columns: 2fr 2fr 1fr; }
.tv-footer-col--sections .tv-footer-links {
  column-count: 2;
  column-gap: var(--sp-6);
}
.tv-footer-col--sections .tv-footer-links a {
  break-inside: avoid;
  display: block;
}
@media (max-width: 720px) {
  .tv-footer-col--sections .tv-footer-links { column-count: 2; }
}

/* Report download page (custom-report.hbs) */
.report-page { max-width: var(--container); margin: 0 auto; padding: var(--sp-8) var(--gutter); }
.report-hero { display: grid; grid-template-columns: 280px 1fr; gap: var(--sp-7); align-items: center; }
.report-cover img { width: 100%; height: auto; display: block; border: 1px solid var(--rule); border-radius: var(--r-sm, 4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.report-kicker { font-family: var(--font-mono); font-size: var(--t-mono-sm); letter-spacing: .1em; text-transform: uppercase; color: var(--accent-text); }
.report-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.08; margin: var(--sp-3) 0; color: var(--text-strong); }
.report-dek { font-size: 1.05rem; color: var(--text-muted); max-width: 38rem; }
.report-body { max-width: 42rem; margin: var(--sp-8) auto 0; }
.report-access-note { font-family: var(--font-mono); font-size: var(--t-mono-sm); letter-spacing: .06em; text-transform: uppercase; color: var(--text-faint); display: block; margin-bottom: var(--sp-5); }
.report-gate { border: 1px solid var(--rule-strong); border-top: 3px solid var(--accent); border-radius: var(--r-sm, 4px); padding: var(--sp-7); text-align: center; background: var(--bg-raised, var(--bg)); }
.report-gate-head { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-strong); margin: 0 0 var(--sp-3); }
.report-gate-copy { color: var(--text-muted); max-width: 28rem; margin: 0 auto var(--sp-5); }
.report-gate-btn { display: inline-block; }
.report-gate-alt { margin-top: var(--sp-4); font-size: .85rem; color: var(--text-faint); }
.report-gate-alt a { color: var(--accent-text); }
@media (max-width: 720px) {
  .report-hero { grid-template-columns: 1fr; }
  .report-cover { max-width: 240px; }
}

/* Reports library grid (reports-library page) */
.reports-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6); margin-top: var(--sp-6);
}
.reports-grid figure.report-card { margin: 0; }
.reports-grid .report-card a { text-decoration: none; color: inherit; display: block; }
.reports-grid .report-card img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block;
  border: 1px solid var(--rule); border-radius: var(--r-sm, 4px);
  transition: transform var(--dur-fast) var(--ease-std);
}
.reports-grid .report-card a:hover img { transform: translateY(-2px); }
.reports-grid .report-card figcaption {
  margin-top: var(--sp-3); font-family: var(--font-display);
  font-size: .95rem; line-height: 1.25; color: var(--text-strong);
}
@media (max-width: 720px) { .reports-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .reports-grid { grid-template-columns: 1fr; } }

/* Report download CTA — injected atop gated content; clicks hit the download log */
.report-download-cta { margin: 0 0 var(--sp-6); }
.report-download-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent-on);
  background: var(--accent);
  padding: 0.85rem 1.4rem;
  border-radius: var(--r-xs);
  font-weight: 500;
  transition: background var(--dur-fast) var(--ease-std);
}
.report-download-btn:hover { background: var(--accent-hover); }
.report-download-btn--request { background: var(--surface-inverse); color: var(--bg); }
.report-download-btn--request:hover { background: var(--warm-800); }

/* Report gate: firmographic capture form */
.report-form { margin-top: var(--sp-5); }
.report-form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-3); margin-bottom: var(--sp-4); text-align: left;
}
.report-form-grid input {
  width: 100%; padding: 0.65rem 0.75rem;
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text-strong); background: var(--bg);
  border: 1px solid var(--rule-strong); border-radius: var(--r-xs);
}
.report-form-grid input:focus { outline: none; border-color: var(--accent); }
.report-form-grid input::placeholder { color: var(--text-faint); }
.report-form-state { display: none; margin-top: var(--sp-4); font-size: 0.9rem; color: var(--text-muted); }
.report-form.loading .report-form-state.is-loading { display: block; }
.report-form.loading .report-gate-btn { opacity: 0.5; pointer-events: none; }
.report-form.success .report-form-state.is-success { display: block; color: var(--text-strong); }
.report-form.success .report-form-grid, .report-form.success .report-gate-btn { display: none; }
.report-form.error .report-form-state.is-error { display: block; color: var(--accent-text); }
@media (max-width: 540px) { .report-form-grid { grid-template-columns: 1fr; } }

/* Reports library head: TVREV (logo) RESEARCH lockup over the "Reports" title,
   matching the report-art brand line */
.tv-lib-brand {
  display: flex; align-items: center; gap: 0.75rem;
}
.tv-lib-brand-label {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--text-muted);
}
.tv-lib-logo { display: inline-flex; align-items: center; align-self: center; }
.tv-lib-logo .tv-logo-svg { height: 22px; width: auto; display: block; }
.tv-lib-logo .tv-logo-img { height: 22px; width: auto; display: block; }
.tv-lib-brand + .tv-channel-name { margin-top: var(--sp-4); }
/* honor light/dark wordmark swap outside the masthead context */
.tv-lib-logo .logo-paper { display: none; }
.theme-dark .tv-lib-logo .logo-ink { display: none; }
.theme-dark .tv-lib-logo .logo-paper { display: block; }

/* ============================ THOUGHT LEADERS CIRCLE ============================ */
/* The Circle's dark room — full-bleed band on the landing (v0.8.32) */
.tlc-band { background: var(--warm-950) center right / cover no-repeat; color: var(--warm-50); }
.tlc-band .tv-kicker, .tlc-band-kick { color: #d0b06a; }
.tlc-band .tv-kicker::before, .tlc-band-kick::before { background: #d0b06a; }
.tlc-band .tv-subscribe { background: #d0b06a; color: #16140f; }
.tlc-band .tv-subscribe:hover { background: #e8cd8c; }
.tlc-band-inner { padding-top: var(--sp-8); padding-bottom: var(--sp-8); }
.tlc-band-kick { color: var(--signal-300); }
.tlc-band-kick::before { background: var(--signal-400); }
.tlc-band-hed {
  font-family: var(--font-display); font-weight: var(--w-display-hero);
  font-size: clamp(2.4rem, 5.4vw, 3.9rem); line-height: 0.97;
  letter-spacing: var(--tr-tight); margin: 0.15em 0 0.1em; color: var(--warm-50);
  font-variation-settings: "WONK" 0, "SOFT" 0;
}
.tlc-band-desc { font-family: var(--font-body); font-style: italic; font-size: var(--t-dek); color: var(--warm-300); max-width: 44rem; margin: 0.2em 0 0; }
.tlc-band-fomo { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: #d0b06a; margin: var(--sp-5) 0 0; }
.tlc-band-ctas { display: flex; gap: var(--sp-4); align-items: center; margin-top: var(--sp-6); flex-wrap: wrap; }
.tlc-band-ghost {
  font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; color: var(--warm-50);
  border: 1px solid var(--warm-700); border-radius: var(--r-xs); padding: 0.5rem 0.85rem;
  transition: border-color var(--dur-fast);
}
.tlc-band-ghost:hover { border-color: var(--warm-50); }

/* Landing: full-width, member index runs two-up on desktop (v0.8.43) */
.tlc-landing-main { max-width: 74rem; margin: 0 auto; }
.tlc-index { display: grid; grid-template-columns: 1fr 1fr; column-gap: var(--sp-8); }
@media (max-width: 760px) { .tlc-index { grid-template-columns: 1fr; } }

/* Member index — hairline rows, no boxes */
.tlc-index { border-bottom: 0; }
.tlc-row { display: flex; gap: var(--sp-5); align-items: flex-start; padding: var(--sp-5) 2px; border-bottom: 1px solid var(--rule); text-decoration: none; color: inherit; }
.tlc-row:hover .tlc-row-name { color: var(--accent-text); }
.tlc-portrait { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; object-position: center 20%; flex: none; background: var(--surface-alt); display: block; }
.tlc-portrait--lg { width: 148px; height: 148px; }
.tlc-portrait--empty { background: var(--warm-950); }
.tlc-row-body { min-width: 0; }
.tlc-kindline { display: block; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: var(--tr-label); text-transform: uppercase; color: var(--accent-text); }
.tlc-row-name { display: block; font-family: var(--font-display); font-weight: var(--w-display); font-size: 1.4rem; line-height: 1.05; color: var(--text-strong); margin-top: 5px; transition: color var(--dur-fast); font-variation-settings: "WONK" 0, "SOFT" 0; }
.tlc-row-bio { display: block; font-family: var(--font-body); font-style: italic; color: var(--text-muted); font-size: 0.97rem; line-height: 1.42; margin-top: 8px; max-width: 34rem; }

/* Join bar */
.tlc-joinbar { margin-top: var(--sp-8); background: var(--warm-950); color: var(--warm-50); border-radius: var(--r-md); padding: var(--sp-6); display: flex; justify-content: space-between; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.tlc-joinbar b { font-family: var(--font-display); font-size: 1.3rem; font-weight: var(--w-display); font-variation-settings: "WONK" 0, "SOFT" 0; }
.tlc-joinbar p { margin: 0.3em 0 0; color: var(--warm-300); font-size: 0.95rem; max-width: 34rem; }

/* Member profile */
.tlc-back { display: inline-block; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-text); text-decoration: none; margin-bottom: var(--sp-6); }
.tlc-phead { display: flex; gap: var(--sp-6); align-items: flex-start; }
.tlc-pname { font-family: var(--font-display); font-weight: var(--w-display-hero); font-size: clamp(2rem, 4.6vw, 2.9rem); line-height: 1; margin: 0.1em 0 0.2em; color: var(--text-strong); font-variation-settings: "WONK" 0, "SOFT" 0; }
.tlc-bio { color: var(--text-muted); max-width: 40rem; }
.tlc-bio p { margin: 0.4em 0 0; }
.tlc-bio a { color: var(--accent-text); }
.tlc-circle-head { margin-top: var(--sp-8); }

/* Profile pieces: hero + features (homepage grammar) */
.tlc-ph-hero { display: block; text-decoration: none; color: inherit; margin-top: var(--sp-2); }
.tlc-ph-hero-media { width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; border-radius: var(--r-md); background: var(--surface-alt); display: block; margin-bottom: var(--sp-4); }
.tlc-ph-hed { display: block; font-family: var(--font-display); font-weight: var(--w-display-hero); font-size: clamp(1.5rem, 3.2vw, 2.1rem); line-height: 1.04; letter-spacing: -0.015em; color: var(--text-strong); font-variation-settings: "WONK" 0, "SOFT" 0; }
.tlc-ph-hero:hover .tlc-ph-hed, .tlc-ph-card:hover .tlc-ph-card-hed { color: var(--accent-text); }
.tlc-ph-dek { display: block; font-family: var(--font-body); font-style: italic; color: var(--text-muted); font-size: 1.05rem; line-height: 1.4; margin-top: 8px; max-width: 40rem; }
.tlc-ph-meta { display: block; font-family: var(--font-mono); font-size: var(--t-mono-sm); letter-spacing: 0.04em; color: var(--text-faint); margin-top: 10px; }
.tlc-ph-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); margin-top: var(--sp-6); padding-top: var(--sp-5); border-top: 1px solid var(--rule); }
.tlc-ph-card { display: block; text-decoration: none; color: inherit; }
.tlc-ph-card-media { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--r-sm); background: var(--surface-alt); display: block; margin-bottom: 10px; }
.tlc-ph-card-hed { display: block; font-family: var(--font-display); font-weight: var(--w-display); font-size: 1.15rem; line-height: 1.15; color: var(--text-strong); font-variation-settings: "WONK" 0, "SOFT" 0; }
@media (max-width: 640px) { .tlc-ph-grid { grid-template-columns: 1fr; } .tlc-phead { flex-direction: column; } }

/* Join the Circle (page-join-tlc.hbs, v0.8.47) */
.tlc-band--join .tlc-band-inner { padding-top: var(--sp-8); padding-bottom: var(--sp-8); }
.tlc-join-props { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--sp-6); margin: var(--sp-8) 0; }
.tlc-join-prop { border-top: 2px solid var(--text-strong); padding-top: var(--sp-4); }
.tlc-join-prop-kick { font-family: var(--font-mono); font-size: var(--t-mono-sm); letter-spacing: var(--tr-label); text-transform: uppercase; color: var(--accent-text); }
.tlc-join-prop p { margin: var(--sp-3) 0 0; color: var(--text-muted); font-size: 0.98rem; }
.tlc-join-pitch { margin-bottom: var(--sp-8); }
.tlc-apply { margin-bottom: var(--sp-8); }
.tlc-apply .tlc-apply-wide { grid-column: 1 / -1; }
.tlc-apply textarea { width: 100%; padding: 0.65rem 0.75rem; font-family: var(--font-body); font-size: 0.95rem; color: var(--text-strong); background: var(--bg); border: 1px solid var(--rule-strong); border-radius: var(--r-xs); resize: vertical; }
.tlc-apply textarea:focus { outline: none; border-color: var(--accent); }
.tlc-apply textarea::placeholder { color: var(--text-faint); }
@media (max-width: 700px) { .tlc-join-props { grid-template-columns: 1fr; } }

/* FREE DOWNLOAD block on report-excerpt posts (v0.8.48) */
.post-report-cta { position: relative; margin-top: var(--sp-8); }
.post-report-cta .rp-badge { position: static; display: inline-block; margin-bottom: var(--sp-3); }
.post-report-cta-btns a:not(:first-child) { display: none; }

/* v0.8.56: publication-side label for the iSpot ad unit (label lives with the
   publication, never inside the unit itself) */
.tv-ad-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 0.4rem;
}

/* ---- TLC v0.9.0: companies-first (Alan, Aug 26) ---- */
/* Logo wall: a hairline grid so mixed-quality member logos still read as a
   set. Cells are equal, logos are height-capped and centered, and a company
   with no logo file falls back to its name as a Fraunces wordmark. */
.tlc-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}
@media (max-width: 900px) { .tlc-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .tlc-wall { grid-template-columns: repeat(2, 1fr); } }
.tlc-cell {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  min-height: 104px;
  display: flex; align-items: center; justify-content: center;
  padding: var(--sp-4);
  text-align: center;
  transition: background var(--dur-fast) var(--ease-std);
}
.tlc-cell:hover { background: var(--surface-alt); }
.tlc-logo {
  max-height: 40px; max-width: 78%; width: auto; height: auto;
  display: block; object-fit: contain;
  /* member logos arrive in every colourway; unify them to the page's ink */
  filter: grayscale(1) contrast(1.1);
  opacity: .82;
  transition: opacity var(--dur-fast), filter var(--dur-fast);
}
.tlc-cell:hover .tlc-logo { filter: none; opacity: 1; }
.tlc-wordmark {
  font-family: var(--font-display);
  font-weight: var(--w-display);
  font-size: 1.15rem; line-height: 1.15;
  color: var(--text-strong);
  font-variation-settings: "WONK" 0, "SOFT" 0;
}
.tlc-cell--open { background: var(--surface-alt); }
.tlc-wordmark--open { text-decoration: none; color: var(--text-faint); display: block; }
.tlc-cell--open:hover .tlc-wordmark--open { color: var(--accent-text); }
.tlc-open-note {
  display: block;
  font-family: var(--font-mono); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-text); margin-top: 7px;
}
.tlc-empty { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); padding: var(--sp-5) 0; }
.tlc-explainer { max-width: 38rem; margin: var(--sp-7) 0 0; }
.tlc-explainer p { font-family: var(--font-body); font-size: 1.05rem; line-height: 1.6; color: var(--text-body); }

/* Exec spotlights — coverage-driven, so the corporate wall reads first and
   the faces arrive as evidence underneath it. */
.tlc-exec-head { margin-top: var(--sp-8); }
.tlc-execs { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6) var(--sp-5); }
@media (max-width: 900px) { .tlc-execs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .tlc-execs { grid-template-columns: 1fr; } }
.tlc-exec { display: flex; gap: var(--sp-4); align-items: flex-start; text-decoration: none; color: inherit; }
.tlc-exec-media {
  width: 84px; height: 60px; flex: none; object-fit: cover; border-radius: var(--r-xs);
  background: var(--surface-alt); display: block;
  filter: grayscale(.85) contrast(1.03);
  transition: filter var(--dur-fast);
}
.tlc-exec:hover .tlc-exec-media { filter: none; }
.tlc-exec-media--empty { background: var(--warm-950); }
.tlc-exec-body { min-width: 0; }
.tlc-exec-kind {
  display: block; font-family: var(--font-mono); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 5px;
}
.tlc-exec-hed {
  display: block; font-family: var(--font-display); font-weight: var(--w-display);
  font-size: 1.02rem; line-height: 1.2; color: var(--text-strong);
  font-variation-settings: "WONK" 0, "SOFT" 0;
  transition: color var(--dur-fast);
}
.tlc-exec:hover .tlc-exec-hed { color: var(--accent-text); }
.tlc-exec-meta {
  display: block; font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.05em; color: var(--text-faint); margin-top: 6px;
}

/* v0.9.1: country select in the report gate — matches the text inputs exactly
   so the row of six reads as one control set, with a drawn caret (no OS chrome) */
.report-form-select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%235c5648' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.1rem;
}
.report-form-select:invalid { color: var(--text-faint); }

/* ---- v0.9.1: authors promoted (rail module, Top Authors row, page masthead) ---- */
.tv-authorlist { display: flex; flex-direction: column; }
.tv-authorrow {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: 0.8rem 0; border-bottom: 1px solid var(--rule);
  text-decoration: none; color: inherit;
}
.tv-authorlist .tv-authorrow:last-child { border-bottom: 0; }
.tv-authorrow:hover .tv-authorrow-name { color: var(--accent-text); }
.tv-authorface {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover; display: block; background: var(--surface-alt);
}
.tv-authorface--mono {
  display: flex; align-items: center; justify-content: center;
  background: var(--text-strong); color: var(--bg);
  font-family: var(--font-display); font-weight: var(--w-display);
  font-size: 0.95rem; font-variation-settings: "WONK" 0, "SOFT" 0;
}
.tv-authorrow-body { min-width: 0; }
.tv-authorrow-name {
  display: block; font-family: var(--font-display); font-weight: var(--w-display);
  font-size: 1.05rem; line-height: 1.1; color: var(--text-strong);
  font-variation-settings: "WONK" 0, "SOFT" 0;
  transition: color var(--dur-fast);
}
.tv-authorrow-count {
  display: block; font-family: var(--font-mono); font-size: var(--t-mono-sm);
  letter-spacing: 0.04em; color: var(--text-faint); margin-top: 3px;
}

/* Top Authors — "Who to read", homepage */
.tv-whoread { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--sp-5); }
@media (max-width: 900px) { .tv-whoread { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 620px) { .tv-whoread { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.tv-whoread-item { display: flex; flex-direction: column; gap: 0.6rem; text-decoration: none; color: inherit; }
.tv-whoread-item:hover .tv-whoread-name { color: var(--accent-text); }
.tv-whoread .tv-authorface { width: 74px; height: 74px; font-size: 1.5rem; }
.tv-whoread-name {
  font-family: var(--font-display); font-weight: var(--w-display); font-size: 1.2rem;
  line-height: 1.08; color: var(--text-strong);
  font-variation-settings: "WONK" 0, "SOFT" 0; transition: color var(--dur-fast);
}
.tv-whoread-bio {
  font-family: var(--font-body); font-style: italic; font-size: 0.92rem;
  line-height: 1.4; color: var(--text-muted);
}
.tv-whoread-count {
  font-family: var(--font-mono); font-size: var(--t-mono-sm);
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-faint);
}

/* Author page masthead */
.tv-authorhead { display: flex; gap: var(--sp-5); align-items: flex-start; }
.tv-authorhead .tv-authorface { width: 104px; height: 104px; font-size: 2.1rem; }
.tv-authorhead-body { min-width: 0; }
.tv-authorhead-bio {
  font-family: var(--font-body); font-style: italic; font-size: 1.12rem;
  line-height: 1.45; color: var(--text-muted); max-width: 34rem; margin-top: 0.75rem;
}
.tv-authorhead-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--sp-4); }
.tv-authorhead-links a, .tv-authorhead-links span {
  font-family: var(--font-mono); font-size: var(--t-mono-sm);
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted);
  border: 1px solid var(--rule); padding: 0.4rem 0.6rem; text-decoration: none;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.tv-authorhead-links a:hover { border-color: var(--accent-text); color: var(--accent-text); }
@media (max-width: 620px) {
  .tv-authorhead { flex-direction: column; gap: var(--sp-4); }
  .tv-authorhead .tv-authorface { width: 76px; height: 76px; font-size: 1.6rem; }
}
