/**
 * podcast theme CSS — byte-for-byte port of
 *   /Volumes/x9/claude-design/ui_kits/podcast/{index,blog,post,page}.html
 *
 * Generated by scripts/port-theme-css.py.
 *
 * NOTE: top-level `:root` and `html, body` selectors are mechanically
 * rewritten to `body[data-theme="podcast"]` so multiple theme.css
 * files can coexist in the bundle without overriding each other's
 * CSS custom properties. Other selectors (.brand, .nav-link, etc.)
 * are preserved verbatim from source — they reference var(--bg)/
 * var(--fg) which inherit from the scoped body.
 */

/* ===== podcast/index.html <style> ===== */
body[data-theme="podcast"], [data-theme="podcast"] {
    overflow-x: clip;
    --bg:        #0f0a1e;
    --bg-2:      #1a0a2e;
    --fg:        #e8e6f0;
    --muted:     #9d9aad;
    --subtle:    #6b6880;
    --dim:       #4a4760;
    --purple:    #a855f7;
    --purple-2:  #c084fc;
    --purple-bg: rgba(168,85,247,0.20);
    --border:    rgba(168,85,247,0.20);
    --border-h:  rgba(168,85,247,0.40);
    --sans: 'Inter', system-ui, -apple-system, sans-serif;
  }
  [data-theme="podcast"] * { box-sizing: border-box; }
  body[data-theme="podcast"], [data-theme="podcast"] {
    margin: 0; padding: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
  }
  [data-theme="podcast"] a { color: inherit; text-decoration: none; }

  /* Nav */
  [data-theme="podcast"] nav.site-nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(15,10,30,0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 14px 24px;
    display: flex; align-items: center; justify-content: space-between;
  }
  [data-theme="podcast"] .brand {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--fg);
  }
  [data-theme="podcast"] .brand svg { width: 20px; height: 20px; color: var(--purple); }
  [data-theme="podcast"] .nav-links { display: flex; align-items: center; gap: 32px; }
  [data-theme="podcast"] .nav-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--subtle);
    transition: color 150ms;
  }
  [data-theme="podcast"] .nav-link:hover { color: var(--purple-2); }
  [data-theme="podcast"] .member-disc {
    width: 32px; height: 32px;
    border-radius: 9999px;
    background: rgba(168,85,247,0.15);
    color: var(--purple);
    font-size: 11px; font-weight: 600;
    display: inline-flex; align-items: center; justify-content: center;
  }

  /* Hero */
  [data-theme="podcast"] .hero {
    background: linear-gradient(135deg, rgba(88,28,135,0.40) 0%, #0f0a1e 55%);
    border-bottom: 1px solid rgba(168,85,247,0.15);
    padding: 96px 24px 56px;
  }
  [data-theme="podcast"] .hero-inner { max-width: 1100px; margin: 0 auto; }
  [data-theme="podcast"] .show-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--purple-bg);
    color: var(--purple);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 9999px;
    margin-bottom: 24px;
  }
  [data-theme="podcast"] .show-pill svg { width: 14px; height: 14px; }
  [data-theme="podcast"] .hero h1 {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: #fff;
    margin: 0 0 16px;
    text-align: center;
  }
  [data-theme="podcast"] .hero .tagline {
    font-size: 20px;
    line-height: 1.5;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
  }

  /* Latest episode card */
  [data-theme="podcast"] .latest-card {
    margin-top: 56px;
    display: flex; align-items: center; gap: 40px;
    padding: 32px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
  }
  @media (max-width: 760px) {
    [data-theme="podcast"] .latest-card { flex-direction: column; align-items: flex-start; gap: 24px; }
  }
  [data-theme="podcast"] .artwork {
    width: 200px; height: 200px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 40px rgba(168,85,247,0.35);
    background-image: linear-gradient(135deg, var(--purple) 0%, var(--bg-2) 100%);
    position: relative;
  }
  [data-theme="podcast"] .artwork .play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.3); opacity: 0;
    transition: opacity 200ms;
  }
  [data-theme="podcast"] .latest-card:hover .artwork .play { opacity: 1; }
  [data-theme="podcast"] .play-circle {
    width: 56px; height: 56px;
    border-radius: 9999px;
    background: var(--purple);
    display: inline-flex; align-items: center; justify-content: center;
  }
  [data-theme="podcast"] .play-circle svg { width: 22px; height: 22px; color: #fff; margin-left: 3px; }
  [data-theme="podcast"] .ep-info { flex: 1; min-width: 0; }
  [data-theme="podcast"] .ep-meta {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 16px;
  }
  [data-theme="podcast"] .latest-tag {
    background: var(--purple-bg);
    color: var(--purple);
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 9999px;
  }
  [data-theme="podcast"] .ep-info h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--fg);
    margin: 0 0 12px;
  }
  [data-theme="podcast"] .ep-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #9e9bb5;
    margin: 0 0 24px;
    max-width: 560px;
  }
  [data-theme="podcast"] .listen-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--purple);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 9999px;
    white-space: nowrap;
    transition: opacity 150ms;
  }
  [data-theme="podcast"] .listen-btn:hover { opacity: 0.9; }
  [data-theme="podcast"] .listen-btn svg { width: 16px; height: 16px; }
  [data-theme="podcast"] .ep-dur {
    margin-left: 16px;
    font-size: 12px; color: var(--subtle);
  }

  /* Platforms row */
  [data-theme="podcast"] .platforms {
    margin-top: 32px;
    display: flex; flex-wrap: wrap; gap: 12px;
    align-items: center; justify-content: center;
  }
  [data-theme="podcast"] .listen-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--subtle);
  }
  [data-theme="podcast"] .platform-pill {
    border: 1px solid var(--border-h);
    color: #9e9bb5;
    font-size: 12px; font-weight: 600;
    padding: 7px 14px;
    border-radius: 9999px;
    display: inline-flex; align-items: center; gap: 6px;
    transition: color 150ms, border-color 150ms;
  }
  [data-theme="podcast"] .platform-pill:hover { color: var(--purple-2); border-color: var(--purple); }

  /* More episodes */
  [data-theme="podcast"] .episodes {
    max-width: 1100px; margin: 0 auto;
    padding: 56px 24px;
  }
  [data-theme="podcast"] .ep-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--subtle);
    margin: 0 0 28px;
  }
  [data-theme="podcast"] .ep-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  }
  @media (max-width: 760px) { [data-theme="podcast"] .ep-grid { grid-template-columns: 1fr; } }
  [data-theme="podcast"] .ep-card {
    display: flex; align-items: center; gap: 16px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    transition: background 150ms;
  }
  [data-theme="podcast"] .ep-card:hover { background: rgba(255,255,255,0.04); }
  [data-theme="podcast"] .ep-thumb {
    width: 80px; height: 80px;
    border-radius: 12px;
    flex-shrink: 0;
    background: var(--bg-2);
    background-size: cover; background-position: center;
    position: relative;
  }
  [data-theme="podcast"] .t-1 { background-image: linear-gradient(135deg, #581c87 0%, #1e1b4b 100%); }
  [data-theme="podcast"] .t-2 { background-image: linear-gradient(135deg, #1e3a8a 0%, #581c87 100%); }
  [data-theme="podcast"] .t-3 { background-image: linear-gradient(135deg, #831843 0%, #1e1b4b 100%); }
  [data-theme="podcast"] .t-4 { background-image: linear-gradient(135deg, #0f172a 0%, #581c87 100%); }
  [data-theme="podcast"] .ep-thumb-play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.4);
    opacity: 0; transition: opacity 200ms;
    border-radius: 12px;
  }
  [data-theme="podcast"] .ep-card:hover .ep-thumb-play { opacity: 1; }
  [data-theme="podcast"] .ep-thumb-play svg { width: 22px; height: 22px; color: #fff; }
  [data-theme="podcast"] .ep-card-body { flex: 1; min-width: 0; }
  [data-theme="podcast"] .ep-card-body .ti {
    font-size: 14px; font-weight: 600;
    color: var(--fg);
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 150ms;
  }
  [data-theme="podcast"] .ep-card:hover .ti { color: var(--purple-2); }
  [data-theme="podcast"] .ep-card-body .tag {
    font-size: 11px;
    color: var(--subtle);
    margin: 0 0 2px;
  }
  [data-theme="podcast"] .ep-card-body .meta {
    display: flex; gap: 10px;
    font-size: 11px;
    color: var(--subtle);
  }
  [data-theme="podcast"] .all-eps {
    margin-top: 28px; text-align: center;
  }
  [data-theme="podcast"] .all-eps a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--subtle);
  }
  [data-theme="podcast"] .all-eps a:hover { color: var(--purple-2); }

  /* About */
  [data-theme="podcast"] .about {
    border-top: 1px solid rgba(168,85,247,0.1);
    padding: 80px 24px;
  }
  [data-theme="podcast"] .about-inner {
    max-width: 720px; margin: 0 auto;
    text-align: center;
  }
  [data-theme="podcast"] .about h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin: 0 0 24px;
    color: var(--fg);
  }
  [data-theme="podcast"] .about p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 16px;
  }
  [data-theme="podcast"] .about-meta {
    font-size: 13px;
    color: var(--subtle);
  }

  /* CTA */
  [data-theme="podcast"] .cta {
    border-top: 1px solid rgba(168,85,247,0.1);
    padding: 64px 24px;
    text-align: center;
  }
  [data-theme="podcast"] .cta-inner { max-width: 480px; margin: 0 auto; }
  [data-theme="podcast"] .cta h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 24px;
    color: var(--fg);
  }
  [data-theme="podcast"] .sub-form {
    display: flex; gap: 12px;
    margin-bottom: 32px;
  }
  [data-theme="podcast"] .sub-form input {
    flex: 1; min-width: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-h);
    border-radius: 9999px;
    color: #fff;
    padding: 12px 22px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
  }
  [data-theme="podcast"] .sub-form input::placeholder { color: rgba(168,85,247,0.4); }
  [data-theme="podcast"] .sub-form button {
    background: var(--purple);
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 12px 22px;
    font-size: 14px; font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 150ms;
    white-space: nowrap;
  }
  [data-theme="podcast"] .sub-form button:hover { opacity: 0.9; }

  /* Footer */
  [data-theme="podcast"] footer.site-footer {
    padding: 32px 24px;
    border-top: 1px solid rgba(168,85,247,0.1);
    background: rgba(0,0,0,0.3);
  }
  [data-theme="podcast"] .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; flex-wrap: wrap;
    font-size: 12px;
    color: var(--dim);
  }
  [data-theme="podcast"] .footer-inner a:hover { color: var(--purple-2); }
  [data-theme="podcast"] .footer-links { display: flex; gap: 24px; }

/* ===== podcast/blog.html <style> ===== */
/* === Inner page (blog/post/page) — inherits theme typography & color from body === */
  [data-theme="podcast"] .ip-wrap { max-width: 1200px; margin: 0 auto; padding: 64px clamp(16px, 4vw, 32px); }
  [data-theme="podcast"] .ip-narrow { max-width: 760px; margin: 0 auto; padding: 64px clamp(16px, 4vw, 32px); }
  [data-theme="podcast"] .ip-prose-wrap { max-width: 720px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }
  [data-theme="podcast"] .ip-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.55; margin: 0 0 18px; }
  [data-theme="podcast"] .ip-h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 18px; text-wrap: balance; }
  [data-theme="podcast"] .ip-h1-serif { font-family: var(--vb-heading-font, var(--heading, var(--display, inherit))); font-size: clamp(40px, 5.4vw, 64px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.1; margin: 0 0 18px; text-wrap: balance; }
  [data-theme="podcast"] .ip-dek { font-size: 19px; line-height: 1.55; opacity: 0.7; margin: 0 0 28px; max-width: 640px; text-wrap: pretty; }
  [data-theme="podcast"] .ip-byline { display: flex; align-items: center; gap: 14px; margin: 0 0 40px; padding: 14px 0; border-top: 1px solid color-mix(in srgb, currentColor 12%, transparent); border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent); }
  [data-theme="podcast"] .ip-byline > div { min-width: 0; flex: 1; }
  [data-theme="podcast"] .ip-avatar { width: 40px; height: 40px; border-radius: 9999px; background: color-mix(in srgb, currentColor 12%, transparent); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
  [data-theme="podcast"] .ip-byline .author { font-size: 14px; font-weight: 600; }
  [data-theme="podcast"] .ip-byline .meta { font-size: 13px; opacity: 0.55; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  [data-theme="podcast"] .ip-cover { width: 100%; aspect-ratio: 16/9; background-size: cover; background-position: center; margin: 0 0 40px; }
  [data-theme="podcast"] .ip-prose { font-size: 18px; line-height: 1.75; }
  [data-theme="podcast"] .ip-prose p { margin: 0 0 22px; opacity: 0.92; }
  [data-theme="podcast"] .ip-prose h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; margin: 40px 0 16px; }
  [data-theme="podcast"] .ip-prose h3 { font-size: clamp(20px, 2.4vw, 24px); font-weight: 700; margin: 32px 0 12px; }
  [data-theme="podcast"] .ip-prose blockquote { margin: 28px 0; padding: 4px 0 4px 22px; border-left: 3px solid color-mix(in srgb, currentColor 35%, transparent); font-style: italic; font-size: 21px; line-height: 1.5; opacity: 0.78; }
  [data-theme="podcast"] .ip-prose ul, [data-theme="podcast"] .ip-prose ol { margin: 0 0 22px; padding-left: 22px; }
  [data-theme="podcast"] .ip-prose li { margin: 0 0 8px; opacity: 0.92; line-height: 1.7; }
  [data-theme="podcast"] .ip-prose code:not(pre code) { font-family: 'JetBrains Mono', 'IBM Plex Mono', 'Courier New', monospace; font-size: 0.88em; background: color-mix(in srgb, currentColor 8%, transparent); padding: 1px 6px; border-radius: 4px; }
  [data-theme="podcast"] .ip-prose pre { font-family: 'JetBrains Mono', 'IBM Plex Mono', 'Courier New', monospace; background: color-mix(in srgb, currentColor 4%, transparent); border: 1px solid color-mix(in srgb, currentColor 12%, transparent); border-radius: 8px; padding: 16px 18px; overflow-x: auto; font-size: 14px; line-height: 1.65; margin: 22px 0; }
  [data-theme="podcast"] .ip-prose hr { border: none; height: 1px; background: color-mix(in srgb, currentColor 14%, transparent); margin: 36px 0; }
  [data-theme="podcast"] .ip-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 0; }
  [data-theme="podcast"] .ip-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border: 1px solid color-mix(in srgb, currentColor 22%, transparent); border-radius: 9999px; opacity: 0.7; text-decoration: none; color: inherit; white-space: nowrap; }
  [data-theme="podcast"] .ip-tag:hover { opacity: 1; }
  /* Blog index */
  [data-theme="podcast"] .ip-index-head { margin: 0 0 40px; padding-bottom: 24px; border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent); }
  [data-theme="podcast"] .ip-filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0 0; }
  [data-theme="podcast"] .ip-filter { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border: 1px solid color-mix(in srgb, currentColor 18%, transparent); border-radius: 9999px; text-decoration: none; color: inherit; opacity: 0.7; white-space: nowrap; }
  [data-theme="podcast"] .ip-filter:hover { opacity: 1; border-color: color-mix(in srgb, currentColor 32%, transparent); }
  [data-theme="podcast"] .ip-filter.active { background: color-mix(in srgb, currentColor 14%, transparent); border-width: 2px; padding: 5px 13px; opacity: 1; font-weight: 700; }
  [data-theme="podcast"] .ip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media (max-width: 900px) { [data-theme="podcast"] .ip-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { [data-theme="podcast"] .ip-grid { grid-template-columns: 1fr; } }
  [data-theme="podcast"] .ip-card { display: block; border: 1px solid color-mix(in srgb, currentColor 12%, transparent); border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; transition: border-color 200ms, transform 200ms; }
  [data-theme="podcast"] .ip-card:hover { border-color: color-mix(in srgb, currentColor 30%, transparent); transform: translateY(-2px); }
  [data-theme="podcast"] .ip-card .img { width: 100%; aspect-ratio: 16/10; background-size: cover; background-position: center; }
  [data-theme="podcast"] .ip-card .body { padding: 18px 20px 20px; }
  [data-theme="podcast"] .ip-card .kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; margin: 0 0 8px; }
  [data-theme="podcast"] .ip-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; margin: 0 0 8px; }
  [data-theme="podcast"] .ip-card p { font-size: 14px; line-height: 1.55; opacity: 0.7; margin: 0 0 12px; }
  [data-theme="podcast"] .ip-card .meta { font-size: 12px; opacity: 0.55; }
  [data-theme="podcast"] .ip-pag { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 56px 0 0; }
  [data-theme="podcast"] .ip-pag a, [data-theme="podcast"] .ip-pag span { min-width: 36px; height: 36px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid color-mix(in srgb, currentColor 16%, transparent); border-radius: 6px; text-decoration: none; color: inherit; font-size: 13px; font-weight: 600; }
  [data-theme="podcast"] .ip-pag .current { background: color-mix(in srgb, currentColor 12%, transparent); }
  /* Inline newsletter CTA — outline style, no blend tricks */
  [data-theme="podcast"] .ip-inline-cta { margin: 56px 0 0; padding: 36px; border: 1px solid color-mix(in srgb, currentColor 14%, transparent); border-radius: 12px; text-align: center; }
  [data-theme="podcast"] .ip-inline-cta h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 8px; }
  [data-theme="podcast"] .ip-inline-cta p { font-size: 14px; opacity: 0.7; margin: 0 0 18px; }
  [data-theme="podcast"] .ip-inline-cta form { display: flex; gap: 8px; max-width: 380px; margin: 0 auto; }
  [data-theme="podcast"] .ip-inline-cta input { flex: 1; min-width: 0; background: transparent; border: 1px solid color-mix(in srgb, currentColor 22%, transparent); border-radius: 8px; color: inherit; font-family: inherit; font-size: 14px; padding: 10px 14px; outline: none; }
  [data-theme="podcast"] .ip-inline-cta button { background: transparent; border: 2px solid currentColor; border-radius: 8px; color: inherit; font-family: inherit; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; padding: 9px 22px; cursor: pointer; white-space: nowrap; transition: background 150ms; }
  [data-theme="podcast"] .ip-inline-cta button:hover { background: color-mix(in srgb, currentColor 10%, transparent); }
  /* Comments */
  [data-theme="podcast"] .ip-comments { margin: 64px 0 0; padding-top: 32px; border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent); }
  [data-theme="podcast"] .ip-comments h3 { font-size: 18px; font-weight: 700; margin: 0 0 24px; }
  [data-theme="podcast"] .ip-comment { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid color-mix(in srgb, currentColor 8%, transparent); }
  [data-theme="podcast"] .ip-comment > div { min-width: 0; flex: 1; }
  [data-theme="podcast"] .ip-comment:last-child { border-bottom: none; }
  [data-theme="podcast"] .ip-comment .who { font-size: 13px; font-weight: 600; }
  [data-theme="podcast"] .ip-comment .when { font-size: 12px; opacity: 0.55; }
  [data-theme="podcast"] .ip-comment .text { font-size: 14px; line-height: 1.55; opacity: 0.85; margin: 6px 0 0; }
  /* Back link */
  [data-theme="podcast"] .ip-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; color: inherit; opacity: 0.65; margin: 0 0 24px; white-space: nowrap; }
  [data-theme="podcast"] .ip-back:hover { opacity: 1; }
  /* Static page form */
  [data-theme="podcast"] .ip-form { max-width: 520px; margin: 32px 0 0; }
  [data-theme="podcast"] .ip-form label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.7; margin: 0 0 6px; }
  [data-theme="podcast"] .ip-form .row { margin: 0 0 16px; }
  [data-theme="podcast"] .ip-form input, [data-theme="podcast"] .ip-form textarea { width: 100%; background: transparent; border: 1px solid color-mix(in srgb, currentColor 20%, transparent); border-radius: 8px; color: inherit; font-family: inherit; font-size: 15px; padding: 10px 14px; outline: none; }
  [data-theme="podcast"] .ip-form textarea { min-height: 120px; resize: vertical; }
  [data-theme="podcast"] .ip-form button { background: transparent; border: 2px solid currentColor; border-radius: 8px; color: inherit; font-family: inherit; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; padding: 10px 24px; cursor: pointer; white-space: nowrap; transition: background 150ms; }
  [data-theme="podcast"] .ip-form button:hover { background: color-mix(in srgb, currentColor 10%, transparent); }

/* ===== Responsive overhaul — Sprint K Phase 3 ===== */
/* Nav links already hidden on mobile via hidden lg:flex Tailwind class in TSX */
@media (max-width: 1023px) {
  [data-theme="podcast"] nav.site-nav { padding: 12px 16px; }
}

/* Hero artwork — cap max-width on narrow screens */
@media (max-width: 767px) {
  [data-theme="podcast"] .hero { padding: 64px 16px 40px; }
  [data-theme="podcast"] .latest-card { padding: 20px; }
  [data-theme="podcast"] .artwork { width: 100%; max-width: 280px; height: 200px; margin: 0 auto; }
  [data-theme="podcast"] .hero h1 { font-size: clamp(36px, 10vw, 72px); }
  [data-theme="podcast"] .hero .tagline { font-size: 16px; }
  [data-theme="podcast"] .sub-form { flex-direction: column; }
  [data-theme="podcast"] .sub-form input { border-radius: 9999px; }
  [data-theme="podcast"] .sub-form button { border-radius: 9999px; width: 100%; }
}

/* ===== Page-builder token bridge =====
 * Maps generic --vb-* block renderer variables to Podcast's dark purple palette.
 */
[data-theme="podcast"] main {
  --vb-color-bg:          var(--bg);
  --vb-color-surface:     var(--bg-2);
  --vb-color-bg-elevated: var(--bg-2);
  --vb-color-fg:          var(--fg);
  --vb-color-heading:     var(--fg);
  --vb-color-muted:       var(--muted);
  --vb-color-text-muted:  var(--muted);
  --vb-color-border:      var(--border);
  --vb-color-primary:     var(--purple);
  --vb-color-primary-bg:  var(--purple-bg);
  --vb-color-primary-fg:  var(--fg);
  --vb-color-cta-btn-bg:  var(--purple);
  --vb-color-cta-btn-fg:  var(--fg);
  --vb-color-secondary:   var(--purple-2);
  --vb-heading-font:      var(--sans);
}

/* ===== Old-30 Bespoke Parity Wave 5 — bespoke shop + drawer CSS-only hover (P-097) ===== */
[data-theme="podcast"] .pc-shop-card { transition: border-color 150ms, transform 150ms; }
[data-theme="podcast"] .pc-shop-card:hover { border-color: var(--purple); transform: translateY(-2px); }
[data-theme="podcast"] .pc-shop-pill:hover { filter: brightness(1.1); }
[data-theme="podcast"] .pc-shop-input:focus { border-color: var(--purple); }
[data-theme="podcast"] .pc-buy-now:hover { filter: brightness(1.1); }
