/* ── Design tokens ──────────────────────────────────────────────────────── */
:root {
  --bg:           #FAFAF8;
  --surface:      #FFFFFF;
  --surface2:     #F4F3F0;
  --surface3:     #ECEAE6;
  --border:       #E0DED9;
  --border-soft:  #EDECEA;
  --accent:       #1A3A5C;
  --accent-light: #E8EEF4;
  --accent-dark:  #0F2640;
  --text:         #1A1A1A;
  --text-muted:   #5A5A57;
  --text-faint:   #9E9C98;
  --green:        #16A34A;
  --green-light:  #DCFCE7;
  --yellow:       #B45309;
  --yellow-light: #FEF3C7;
  --red:          #DC2626;
  --red-light:    #FEE2E2;
  --radius:       10px;
  --radius-sm:    6px;
  --radius-xs:    4px;
  --shadow-xs:    0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
  --shadow:       0 4px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.03);
  --shadow-lg:    0 8px 24px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --transition:   0.15s ease;
  --font:         "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: "Playfair Display", "Georgia", "Times New Roman", serif;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ── Layout ─────────────────────────────────────────────────────────────── */
.container       { max-width: 860px;  margin: 0 auto; padding: 0 1.5rem; }
.container--wide { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Nav ────────────────────────────────────────────────────────────────── */
nav {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 58px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 0.5rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-right: 0.5rem;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 0.125rem; }
.nav-links a {
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--surface2); }
.nav-links a.active { color: var(--text); background: var(--surface2); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 0.5rem; }
.nav-user {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-user strong { color: var(--text); font-weight: 600; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 3px rgba(26,58,92,0.25);
}
.btn-primary:hover:not(:disabled) {
  background: var(--accent-dark);
  box-shadow: 0 2px 8px rgba(26,58,92,0.3);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover:not(:disabled) { background: var(--surface2); border-color: var(--border); }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover:not(:disabled) { background: var(--surface2); color: var(--text); }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover:not(:disabled) { opacity: 0.88; transform: translateY(-1px); }
.btn-sm { padding: 0.35rem 0.75rem; font-size: 0.8rem; }
.btn-xs { padding: 0.2rem 0.55rem; font-size: 0.75rem; border-radius: var(--radius-xs); }

/* ── Cards ──────────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.card-hover:hover {
  box-shadow: var(--shadow);
  border-color: var(--border);
  transform: translateY(-1px);
}
.card + .card { margin-top: 0.75rem; }
.card-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--text); line-height: 1.45; letter-spacing: 0; }
.card-subtitle { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }
.card-body { margin-top: 0.75rem; font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ── Score chip ─────────────────────────────────────────────────────────── */
.score-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.65rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.score-high   { background: var(--green-light);  color: var(--green); }
.score-mid    { background: var(--yellow-light); color: var(--yellow); }
.score-low    { background: var(--red-light);    color: var(--red); }

/* ── Tier badge ─────────────────────────────────────────────────────────── */
.tier-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tier-newcomer { background: var(--surface3);      color: var(--text-muted); }
.tier-regular  { background: var(--accent-light);  color: var(--accent); }
.tier-veteran  { background: var(--green-light);   color: var(--green); }
.tier-expert   { background: var(--yellow-light);  color: var(--yellow); }

/* ── Forms ──────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  box-shadow: var(--shadow-xs);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.12);
}
textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.input-hint { font-size: 0.76rem; color: var(--text-faint); margin-top: 0.3rem; }
.word-count-live { font-size: 0.76rem; color: var(--text-faint); text-align: right; margin-top: 0.25rem; }

/* ── Rankings table ─────────────────────────────────────────────────────── */
.rankings-table { width: 100%; border-collapse: collapse; }
.rankings-table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface2);
}
.rankings-table td {
  padding: 1rem 1rem;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.9rem;
  vertical-align: middle;
}
.rankings-table tr:last-child td { border-bottom: none; }
.rankings-table tbody tr { transition: background var(--transition); }
.rankings-table tbody tr:hover td { background: var(--surface2); }
.rank-num {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.rank-num.gold   { color: #B7960C; }
.rank-num.silver { color: #888888; }
.rank-num.bronze { color: #A0632A; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding: 4.5rem 0 3rem;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0;
  border-radius: 0;
  margin-bottom: 1.5rem;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 0.2rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  font-style: normal;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero p {
  color: var(--text-muted);
  margin-top: 1.25rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1.75rem; }

/* ── Section ────────────────────────────────────────────────────────────── */
.section { padding: 2rem 0; }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.section-link { font-size: 0.82rem; color: var(--accent); font-weight: 500; }
.section-link:hover { text-decoration: underline; }

/* ── Divider ────────────────────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border-soft); margin: 1.5rem 0; }

/* ── Search / filter bar ────────────────────────────────────────────────── */
.filter-bar { display: flex; gap: 0.6rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.filter-bar input { flex: 1; min-width: 200px; }
.filter-bar select { width: auto; min-width: 140px; }

/* ── Episode meta row ───────────────────────────────────────────────────── */
.episode-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 0.35rem;
  align-items: center;
}
.episode-meta .dot { color: var(--border); }

/* ── Review card ────────────────────────────────────────────────────────── */
.review-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-xs);
  margin-bottom: 0.75rem;
}
.review-header { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.review-author-block { flex: 1; }
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.review-date { font-size: 0.75rem; color: var(--text-faint); margin-top: 0.1rem; }
.review-title-text { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.5rem; }
.review-body-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* Opaque weight signal bar */
.review-signal-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-soft);
}
.signal-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.signal-dot.lit { background: var(--accent); }
.signal-label { font-size: 0.75rem; color: var(--text-faint); }

/* ── Personal ranker ────────────────────────────────────────────────────── */
.ranker-panel {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ranker-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface2);
}
.ranker-header h3 { font-size: 0.9rem; font-weight: 700; letter-spacing: -0.01em; }
.ranker-header p  { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }
.ranker-list { list-style: none; padding: 0.5rem; min-height: 60px; }
.rank-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: grab;
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  user-select: none;
  background: var(--surface);
  margin-bottom: 0.3rem;
}
.rank-item:last-child { margin-bottom: 0; }
.rank-item:hover { background: var(--surface2); border-color: var(--border-soft); }
.rank-item.dragging {
  opacity: 0.5;
  cursor: grabbing;
}
.rank-item.drag-over {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 0 0 2px rgba(26,58,92,0.15);
}
.rank-item.new-episode {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 0 0 2px rgba(26,58,92,0.12);
}
.rank-pos {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-faint);
  min-width: 1.4rem;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.rank-item.new-episode .rank-pos { color: var(--accent); }
.rank-title { font-size: 0.85rem; font-weight: 500; color: var(--text); flex: 1; line-height: 1.3; }
.rank-drag-handle {
  color: var(--text-faint);
  font-size: 1rem;
  cursor: grab;
  line-height: 1;
  padding: 0 0.2rem;
}
.rank-detail { flex: 1; min-width: 0; }
.rank-detail .rank-title { font-size: 0.85rem; font-weight: 500; color: var(--text); display: block; line-height: 1.3; }
.rank-detail .rank-title:hover { color: var(--accent); }
.rank-meta {
  display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.73rem;
  color: var(--text-faint); margin-top: 0.15rem; align-items: center;
}
.rank-meta .dot { color: var(--border); }
.my-review-item { padding: 0.75rem; }
.rank-unplaced {
  border: 2px dashed var(--accent);
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.5rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Weight preview (admin-only) ────────────────────────────────────────── */
.weight-panel {
  background: var(--surface2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
}
.weight-row { display: flex; justify-content: space-between; padding: 0.2rem 0; }
.weight-row .wlabel { color: var(--text-muted); }
.weight-row .wval   { font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }

/* ── Auth ───────────────────────────────────────────────────────────────── */
.auth-wrap  { max-width: 400px; margin: 5rem auto; padding: 0 1rem; }
.auth-card  {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
}
.auth-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}
.auth-card .auth-sub { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.auth-footer { text-align: center; margin-top: 1.25rem; font-size: 0.84rem; color: var(--text-muted); }

/* ── Alerts ─────────────────────────────────────────────────────────────── */
.alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.alert-error   { background: var(--red-light);    color: var(--red);    border: 1px solid rgba(220,38,38,0.2); }
.alert-success { background: var(--green-light);  color: var(--green);  border: 1px solid rgba(22,163,74,0.2); }
.alert-info    { background: var(--accent-light); color: var(--accent); border: 1px solid rgba(26,58,92,0.15); }

/* ── Spinner ────────────────────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 1.25rem; height: 1.25rem;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.55s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Empty state ────────────────────────────────────────────────────────── */
.empty {
  text-align: center;
  padding: 3.5rem 1rem;
  color: var(--text-faint);
}
.empty-icon { font-size: 2rem; margin-bottom: 0.75rem; opacity: 0.4; }
.empty h3   { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); }
.empty p    { font-size: 0.85rem; margin-top: 0.4rem; }

/* ── Pagination ─────────────────────────────────────────────────────────── */
.pagination { display: flex; gap: 0.35rem; justify-content: center; margin-top: 2rem; }
.pagination button {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 500;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}
.pagination button:hover { background: var(--surface2); }
.pagination button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 1px 4px rgba(26,58,92,0.25);
}

/* ── Stat pill ──────────────────────────────────────────────────────────── */
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--surface2);
  border: 1px solid var(--border-soft);
  border-radius: 99px;
  padding: 0.2rem 0.65rem;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-pill strong { color: var(--text); font-weight: 700; }

/* ── Page title ─────────────────────────────────────────────────────────── */
.page-header { padding: 2rem 0 1.5rem; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.page-header p { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.35rem; }

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { color: var(--border); }

/* ── Toggle switch ──────────────────────────────────────────────────────── */
.toggle-wrap { display: flex; align-items: center; gap: 0.75rem; }
.toggle {
  position: relative;
  width: 40px; height: 22px;
  flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0;
  background: var(--border);
  border-radius: 99px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: var(--shadow-xs);
}
.toggle input:checked + .toggle-slider { background: var(--accent); }
.toggle input:checked + .toggle-slider::before { transform: translateX(18px); }

/* ── Utilities ──────────────────────────────────────────────────────────── */
.text-muted    { color: var(--text-muted); }
.text-faint    { color: var(--text-faint); }
.text-accent   { color: var(--accent); }
.text-green    { color: var(--green); }
.font-mono     { font-family: "SF Mono", "Fira Code", monospace; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.items-center { align-items: center; }
.items-start  { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.hidden { display: none !important; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ── Podcast page ──────────────────────────────────────────────────────── */
.podcast-hero { padding: 2.5rem 0 1rem; }
.podcast-hero-inner { display: flex; gap: 1.75rem; align-items: flex-start; }
.podcast-cover {
  width: 160px; height: 160px; flex-shrink: 0;
  border-radius: var(--radius); overflow: hidden;
  background: var(--surface2); border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
}
.podcast-cover img { width: 100%; height: 100%; object-fit: cover; }
.podcast-info { flex: 1; min-width: 0; }
.podcast-info h1 {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 0.5rem;
}
.podcast-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.podcast-episode-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm); margin-bottom: 0.75rem;
}
.podcast-ep-header { display: flex; align-items: flex-start; gap: 1rem; }
.podcast-ep-title { font-size: 0.975rem; font-weight: 600; color: var(--text); line-height: 1.4; }
.podcast-ep-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.78rem;
  color: var(--text-faint); margin-top: 0.25rem; align-items: center;
}
.podcast-ep-meta .dot { color: var(--border); }
.podcast-ep-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-top: 0.75rem; }
.podcast-player { margin-top: 0.75rem; }
.podcast-player audio { border-radius: var(--radius-sm); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .nav-links a span { display: none; }
  .rankings-table th:nth-child(5),
  .rankings-table td:nth-child(5),
  .rankings-table th:nth-child(6),
  .rankings-table td:nth-child(6) { display: none; }
  .episode-detail-grid { grid-template-columns: 1fr !important; }
  .podcast-hero-inner { flex-direction: column; align-items: center; text-align: center; }
  .podcast-cover { width: 120px; height: 120px; }
}
