/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; background: #fafaf9; color: #1c1917; line-height: 1.5; }
a { color: #7c3aed; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Design tokens ── */
:root {
  --accent: #7c3aed;
  --accent-hover: #6d28d9;
  --accent-light: #ede9fe;
  --accent-text: #5b21b6;
  --bg: #fafaf9;
  --bg-card: #ffffff;
  --text: #1c1917;
  --text-secondary: #78716c;
  --text-tertiary: #a8a29e;
  --border: #e7e5e4;
  --border-light: #f5f5f4;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-full: 9999px;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 24px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  --hero-bg: #0f0a1e;
  --hero-glow: radial-gradient(ellipse 50% 60% at 50% 30%, rgba(124,58,237,0.2) 0%, transparent 70%);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Top Bar ── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--hero-bg);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 56px; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-mark-text { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.logo-mark-text:hover { text-decoration: none; }
.logo-mark-text .logo-wordmark {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600; letter-spacing: -0.02em; font-size: 18px;
}
.logo-w1 { color: #fff; }
.logo-w2 { color: #c4b5fd; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-right a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); transition: color 0.15s; }
.topbar-right a:hover { color: #fff; text-decoration: none; }
.topbar-right .btn-primary {
  background: rgba(124,58,237,0.4); border: 1px solid rgba(124,58,237,0.5);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.topbar-right .btn-primary:hover { background: rgba(124,58,237,0.6); transform: none; box-shadow: none; }
.btn-primary {
  display: inline-flex; align-items: center; padding: 8px 20px; font-size: 14px;
  font-weight: 600; color: #fff; background: var(--accent); border: none;
  border-radius: var(--radius-sm); cursor: pointer; transition: all 0.15s;
}
.btn-primary:hover { background: var(--accent-hover); text-decoration: none; color: #fff; }

/* ── Hero ── */
.hero {
  background: var(--hero-bg);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: var(--hero-glow); pointer-events: none;
}
.hero-inner {
  max-width: 960px; margin: 0 auto;
  padding: 40px 20px 48px;
  display: flex; gap: 24px; align-items: flex-start;
  position: relative;
}
.hero-info { flex: 1; }
.hero-name {
  font-size: 32px; font-weight: 700; color: #f5f5f4;
  letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 6px;
}
.hero-title {
  font-size: 32px; font-weight: 700; color: #f5f5f4;
  letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 6px;
}
.hero-description {
  font-size: 15px; color: #a8a0bf; margin-bottom: 12px; line-height: 1.5;
}
.hero-meta {
  display: flex; gap: 10px; align-items: center;
  font-size: 14px; color: #a8a0bf; margin-bottom: 12px; flex-wrap: wrap;
}
.hero-meta .dot { color: rgba(255,255,255,0.25); }
.hero-category {
  display: inline-block; padding: 2px 10px;
  border-radius: var(--radius-full);
  background: rgba(124,58,237,0.2); color: #c4b5fd;
  font-size: 12px; font-weight: 500;
}
.hero-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-stat { font-size: 14px; color: rgba(255,255,255,0.6); }
.hero-stat strong { color: #f5f5f4; font-weight: 600; }
.hero-stat-box { text-align: left; }
.hero-stat-value { font-size: 24px; font-weight: 700; color: #f5f5f4; line-height: 1.1; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.btn-follow {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 24px; font-size: 14px; font-weight: 600;
  color: #fff; background: var(--accent); border: none;
  border-radius: var(--radius); cursor: pointer;
  transition: all 0.2s var(--ease-out-expo);
  box-shadow: 0 0 20px rgba(124,58,237,0.3);
}
.btn-follow:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 0 30px rgba(124,58,237,0.4); }
.btn-listen {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 24px; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.85); background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); cursor: pointer; transition: all 0.15s;
}
.btn-listen:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); color: #fff; text-decoration: none; }

/* ── Guest Hero (avatar) ── */
.hero-avatar {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(124,58,237,0.4);
  box-shadow: 0 0 40px rgba(124,58,237,0.25); flex-shrink: 0;
}
.hero-avatar-initials {
  width: 96px; height: 96px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 700; color: white; flex-shrink: 0;
  border: 3px solid rgba(124,58,237,0.4);
  box-shadow: 0 0 40px rgba(124,58,237,0.25);
}

/* ── Podcast Hero (artwork) ── */
.hero-artwork {
  width: 180px; height: 180px; border-radius: 16px; object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 60px rgba(124,58,237,0.15);
  flex-shrink: 0;
}

/* ── Episode Hero (smaller artwork) ── */
.hero-artwork-sm {
  width: 120px; height: 120px; border-radius: 12px; object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4); flex-shrink: 0;
}
.hero-podcast-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: #c4b5fd;
  margin-bottom: 8px; transition: color 0.15s;
}
.hero-podcast-link:hover { color: #e9d5ff; text-decoration: none; }

/* ── Main Content ── */
.content { max-width: 960px; margin: 0 auto; padding: 0 20px 60px; }

/* ── Section Headers ── */
.section { padding: 32px 0; border-bottom: 1px solid var(--border); }
.section:last-child { border-bottom: none; }
.section-title {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-tertiary); margin-bottom: 16px;
}
.section-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
}
.section-header .view-all { font-size: 13px; font-weight: 500; }

/* ── Known For (guest page) ── */
.known-for-grid {
  display: flex; gap: 16px; overflow-x: auto;
  padding-bottom: 4px; -webkit-overflow-scrolling: touch;
}
.known-for-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; width: 140px; flex-shrink: 0;
  text-decoration: none; color: var(--text);
  transition: transform 0.25s var(--ease-out-expo);
}
.known-for-card:hover { transform: translateY(-4px); text-decoration: none; }
.known-for-card img {
  width: 120px; height: 120px; border-radius: var(--radius);
  object-fit: cover; box-shadow: var(--shadow-card); margin-bottom: 8px;
  transition: box-shadow 0.25s var(--ease-out-expo);
}
.known-for-card:hover img { box-shadow: var(--shadow-card-hover); }
.known-for-name {
  font-size: 13px; font-weight: 500; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.known-for-count { font-size: 12px; color: var(--accent); font-weight: 600; margin-top: 2px; }

/* ── Notable Guests (podcast page) ── */
.guests-scroll {
  display: flex; gap: 14px; overflow-x: auto;
  padding-bottom: 4px; -webkit-overflow-scrolling: touch;
}
.guest-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; width: 88px; flex-shrink: 0;
  text-decoration: none; color: var(--text);
  transition: transform 0.25s var(--ease-out-expo);
}
.guest-card:hover { transform: translateY(-3px); text-decoration: none; }
.guest-avatar-circle {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600; color: white; margin-bottom: 6px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s var(--ease-out-expo);
}
.guest-card:hover .guest-avatar-circle { box-shadow: var(--shadow-card-hover); }
.guest-avatar-circle img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.guest-name { font-size: 12px; font-weight: 500; line-height: 1.3; }
.guest-count { font-size: 11px; color: var(--accent); font-weight: 600; }

/* ── Episode Rows ── */
.episode-row {
  display: flex; gap: 14px; padding: 16px 12px; margin: 0 -12px;
  border-bottom: 1px solid var(--border-light); border-radius: var(--radius-sm);
  align-items: flex-start; transition: background 0.15s;
}
.episode-row:hover { background: var(--border-light); }
.episode-row:last-child { border-bottom: none; }
.ep-art {
  width: 52px; height: 52px; border-radius: 8px;
  object-fit: cover; flex-shrink: 0; box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.ep-number {
  width: 36px; text-align: center; flex-shrink: 0;
  font-size: 13px; font-weight: 600; color: var(--text-tertiary); padding-top: 2px;
}
.ep-info { flex: 1; min-width: 0; }
.ep-title { font-weight: 500; font-size: 14px; margin-bottom: 3px; line-height: 1.4; }
.ep-title a { color: var(--text); }
.ep-title a:hover { color: var(--accent); }
.ep-meta {
  font-size: 12px; color: var(--text-secondary);
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-bottom: 6px;
}
.ep-meta .dot { color: var(--text-tertiary); }
.ep-summary {
  font-size: 12.5px; color: var(--text-secondary); line-height: 1.5;
  display: flex; align-items: baseline; gap: 6px;
}
.ep-summary .icon { color: var(--accent); font-size: 11px; flex-shrink: 0; }
.ep-summary span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ep-guests { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; }
.ep-duration {
  font-size: 12px; color: var(--text-tertiary); flex-shrink: 0; padding-top: 2px;
}

/* ── Guest Tags ── */
.guest-tag {
  display: inline-block; padding: 2px 10px; border-radius: var(--radius-full);
  background: var(--accent-light); color: var(--accent-text);
  font-size: 11px; font-weight: 500; transition: all 0.15s;
}
.guest-tag:hover { background: var(--accent); color: white; text-decoration: none; }
.guest-tag.active { background: var(--accent); color: white; }

/* ── All Podcasts Grid (guest page) ── */
.podcasts-grid { display: flex; gap: 16px; flex-wrap: wrap; }
.podcast-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; width: 120px;
  text-decoration: none; color: var(--text);
  transition: transform 0.25s var(--ease-out-expo);
}
.podcast-card:hover { transform: translateY(-4px); text-decoration: none; }
.podcast-card img {
  width: 100px; height: 100px; border-radius: var(--radius);
  object-fit: cover; box-shadow: var(--shadow-card); margin-bottom: 6px;
  transition: box-shadow 0.25s var(--ease-out-expo);
}
.podcast-card:hover img { box-shadow: var(--shadow-card-hover); }
.podcast-card .pc-title {
  font-size: 12px; font-weight: 500; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.podcast-card .pc-count { font-size: 11px; color: var(--text-secondary); margin-top: 2px; }

/* ── AI Summary Card (episode page) ── */
.summary-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; box-shadow: var(--shadow-card);
}
.summary-header { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.summary-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: var(--radius-full);
  background: var(--accent-light); color: var(--accent-text);
  font-size: 12px; font-weight: 600;
}
.summary-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.summary-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; line-height: 1.6; color: var(--text);
}
.summary-bullet {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 8px;
}

/* ── Episode Guest Cards (episode page) ── */
.guest-cards { display: flex; flex-direction: column; gap: 12px; }
.guest-card-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-card);
  transition: all 0.2s var(--ease-out-expo);
  text-decoration: none; color: var(--text);
}
.guest-card-row:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); text-decoration: none; }
.guest-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.guest-avatar-initials {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600; color: white; flex-shrink: 0;
}
.guest-card-info { flex: 1; }
.guest-card-name { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.guest-card-desc { font-size: 13px; color: var(--text-secondary); }
.guest-card-arrow { color: var(--text-tertiary); font-size: 18px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--hero-bg) 0%, #1a1030 100%);
  border-radius: 16px; padding: 36px 40px; text-align: center;
  margin: 32px 0; position: relative; overflow: hidden;
}
.cta-banner::before { content: ''; position: absolute; inset: 0; background: var(--hero-glow); pointer-events: none; }
.cta-banner h3 { font-size: 22px; font-weight: 700; color: #f5f5f4; margin-bottom: 8px; position: relative; }
.cta-banner p { font-size: 15px; color: #a8a0bf; margin-bottom: 20px; position: relative; }
.cta-banner .btn-primary {
  padding: 12px 32px; font-size: 15px; border-radius: var(--radius);
  box-shadow: 0 0 30px rgba(124,58,237,0.3); position: relative;
}

/* ── Related Guests (guest page) ── */
.related-guests { display: flex; gap: 8px; flex-wrap: wrap; }
.related-guest {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-full);
  font-size: 13px; font-weight: 500; color: var(--text); transition: all 0.15s;
}
.related-guest:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.related-initials {
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600; color: white; flex-shrink: 0;
}
.related-avatar {
  width: 24px; height: 24px; border-radius: 50%; object-fit: cover;
}

/* ── View All Link ── */
.view-all-link {
  display: block; text-align: center; padding: 14px; margin-top: 8px;
  font-size: 14px; font-weight: 500; color: var(--accent);
  border: 1px solid var(--border); border-radius: var(--radius); transition: all 0.15s;
}
.view-all-link:hover { background: var(--accent-light); text-decoration: none; }

/* ── Pagination ── */
.pagination {
  display: flex; align-items: center; justify-content: center; gap: 4px; padding-top: 20px;
}
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  color: var(--text-secondary); transition: all 0.15s;
}
.pagination a:hover { background: var(--border-light); color: var(--text); text-decoration: none; }
.pagination .active { background: var(--accent); color: white; }

/* ── Breadcrumb ── */
.breadcrumb {
  max-width: 960px; margin: 0 auto; padding: 12px 20px 0;
  font-size: 12px; color: var(--text-tertiary);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent); }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border); padding: 24px 20px;
  text-align: center; color: var(--text-tertiary); font-size: 13px;
}
.footer a { color: var(--text-secondary); }
.footer a:hover { color: var(--accent); }
.footer-logo { font-size: 16px; margin-bottom: 12px; display: inline-flex; }
.footer-links { margin-top: 8px; }
.footer-copy { margin-top: 8px; color: var(--text-tertiary); }

/* ── 404 Page ── */
.error-page {
  min-height: 60vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 60px 20px;
}
.error-code { font-size: 72px; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.error-message { font-size: 18px; color: var(--text-secondary); margin-bottom: 24px; }

/* ── Topbar Nav ── */
.topbar-left { display: flex; align-items: center; gap: 24px; }
.topbar-nav { display: flex; align-items: center; gap: 4px; }
.topbar-nav a {
  padding: 6px 14px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.55); font-weight: 500; font-size: 14px;
  transition: all 0.15s;
}
.topbar-nav a:hover { background: rgba(255,255,255,0.08); color: #fff; text-decoration: none; }
.topbar-nav a.active { background: rgba(255,255,255,0.1); color: #fff; }

/* ── Browse Hero ── */
.browse-hero {
  background: var(--hero-bg); position: relative; overflow: hidden;
  padding: 48px 20px 52px; text-align: center;
}
.browse-hero::before { content: ''; position: absolute; inset: 0; background: var(--hero-glow); pointer-events: none; }
.browse-hero h1 { font-size: 36px; font-weight: 700; color: #f5f5f4; margin-bottom: 8px; position: relative; letter-spacing: -0.02em; }
.browse-hero p { font-size: 16px; color: #a8a0bf; position: relative; max-width: 520px; margin: 0 auto; line-height: 1.6; }
.browse-hero-stats {
  display: flex; justify-content: center; align-items: center; gap: 32px;
  margin-top: 24px; position: relative;
}
.browse-hero-stat { text-align: center; }
.browse-hero-stat-value { display: block; font-size: 28px; font-weight: 700; color: #f5f5f4; line-height: 1.1; }
.browse-hero-stat-label { display: block; font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.browse-hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* ── Browse Content ── */
.browse-content-inner { max-width: 960px; margin: 0 auto; padding: 32px 20px 0; }

/* ── Search Bar ── */
.search-bar { max-width: 480px; margin: 0 auto 28px; position: relative; }
.search-bar input {
  width: 100%; padding: 12px 16px 12px 42px; border-radius: var(--radius);
  border: 1px solid var(--border); font-size: 15px;
  background: var(--bg-card); font-family: inherit; outline: none;
  transition: border 0.15s, box-shadow 0.15s;
  box-shadow: var(--shadow-card);
}
.search-bar input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(124,58,237,0.1), var(--shadow-card); }
.search-bar svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-tertiary); }

/* ── Browse Guest Grid ── */
.browse-guest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.browse-guest-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px 20px; text-align: center;
  transition: all 0.3s var(--ease-out-expo);
  cursor: pointer; text-decoration: none; color: var(--text); display: block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.browse-guest-card:hover {
  border-color: rgba(124,58,237,0.3); box-shadow: 0 8px 30px rgba(124,58,237,0.08), 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-4px); text-decoration: none;
}
.browse-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 22px; color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.browse-avatar img { border-radius: 50%; }
.browse-guest-name { font-weight: 600; font-size: 15px; margin-bottom: 4px; line-height: 1.3; }
.browse-guest-desc {
  font-size: 12.5px; color: var(--text-secondary); margin-bottom: 8px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.browse-guest-stat {
  font-size: 12px; color: var(--accent-text); font-weight: 600;
  background: var(--accent-light); padding: 3px 10px; border-radius: var(--radius-full);
  display: inline-block;
}

/* ── Browse Podcast Grid ── */
.browse-podcast-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.browse-podcast-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px; display: flex; gap: 16px;
  transition: all 0.3s var(--ease-out-expo); cursor: pointer;
  text-decoration: none; color: var(--text);
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.browse-podcast-card:hover {
  border-color: rgba(124,58,237,0.3); box-shadow: 0 8px 30px rgba(124,58,237,0.08), 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-2px); text-decoration: none;
}
.browse-podcast-art {
  width: 80px; height: 80px; border-radius: 10px; flex-shrink: 0; object-fit: cover;
  background: linear-gradient(135deg, var(--accent-light), #ddd8fe);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.browse-podcast-info { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.browse-podcast-title {
  font-weight: 600; font-size: 15px; margin-bottom: 3px; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.browse-podcast-host { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
.browse-podcast-stats { display: flex; gap: 12px; font-size: 12px; color: var(--text-tertiary); font-weight: 500; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero-inner { flex-direction: column; align-items: center; text-align: center; padding: 32px 20px 36px; }
  .hero-avatar, .hero-avatar-initials { width: 80px; height: 80px; font-size: 28px; }
  .hero-artwork { width: 140px; height: 140px; }
  .hero-artwork-sm { width: 100px; height: 100px; }
  .hero-name, .hero-title { font-size: 26px; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .btn-follow { width: 100%; justify-content: center; }
  .known-for-card { width: 110px; }
  .known-for-card img { width: 100px; height: 100px; }
  .cta-banner { padding: 28px 20px; margin: 24px 0; }
  .cta-banner h3 { font-size: 20px; }
  .summary-card { padding: 18px; }
  .topbar-right a:not(.btn-primary) { display: none; }
  .topbar-nav { display: none; }
  .browse-hero { padding: 36px 20px 40px; }
  .browse-hero h1 { font-size: 28px; }
  .browse-hero-stats { gap: 24px; margin-top: 20px; }
  .browse-hero-stat-value { font-size: 24px; }
  .browse-guest-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .browse-guest-card { padding: 16px 12px; }
  .browse-avatar { width: 56px; height: 56px; font-size: 18px; margin-bottom: 10px; }
  .browse-podcast-grid { grid-template-columns: 1fr; }
}
