:root {
  --bg: #FFFFFF;
  --surface: #F5F7FA;
  --ink: #0A0A0A;
  --ink-soft: #3A3D42;
  --muted: #6B7280;
  --line: #E5E7EB;
  --accent: #2563EB;
  --accent-soft: #EFF4FE;
  --shadow: 0 20px 50px -24px rgba(10, 10, 10, .35);
  --shadow-sm: 0 10px 28px -18px rgba(10, 10, 10, .30);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.pd {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  letter-spacing: -.04em;
}

.poddep-text {
  display: flex;
  flex-direction: column;
  line-height: 1.02;
}

.wordmark {
  font-size: 1.08rem;
  letter-spacing: -.03em;
}

.tagline {
  margin-top: 3px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.nav-links,
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a,
.back {
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 700;
  transition: .2s;
}

.nav-links a:hover,
.nav-links a.active,
.back:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 11px 18px;
  font-family: inherit;
  font-size: .86rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: .25s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(37, 99, 235, .6);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(37, 99, 235, .7);
}

.catalog-hero {
  padding: 56px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .78fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

h1 {
  max-width: 20ch;
  margin: 16px 0 14px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.08;
}

.sub {
  max-width: 72ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 550;
}

.intro {
  max-width: 82ch;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: var(--shadow);
}

.hero-card:after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(85px);
  opacity: .45;
}

.hero-card > * {
  position: relative;
}

.hero-card__label {
  color: #93b4fb;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-card__number {
  margin: 18px 0 6px;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .95;
}

.hero-card__text {
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
}

.hero-card__mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-card__mini span {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 850;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 30px;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.stat b {
  display: block;
  color: var(--accent);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.stat small {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 700;
}

.controls {
  position: sticky;
  top: 66px;
  z-index: 50;
  margin-bottom: 8px;
  padding: 16px 0;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 9px 15px;
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: .2s;
}

.chip span {
  color: var(--muted);
  font-size: .72rem;
}

.chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.chip.active span {
  color: rgba(255, 255, 255, .68);
}

.range-note {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
}

.table-section {
  padding: 28px 24px 34px;
}

.table-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  margin-bottom: 18px;
}

.table-head h2 {
  margin-top: 10px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.025em;
}

.table-head p {
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: .94rem;
}

.table-shell {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}

.podcast-table {
  width: 100%;
  min-width: 1120px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .86rem;
}

.podcast-table caption {
  position: absolute;
  left: -9999px;
}

.podcast-table .col-rank { width: 72px; }
.podcast-table .col-podcast { width: 368px; }
.podcast-table .col-category { width: 142px; }
.podcast-table .col-count { width: 102px; }
.podcast-table .col-date { width: 112px; }
.podcast-table .col-chart { width: 116px; }
.podcast-table .col-rating { width: 112px; }
.podcast-table .col-links { width: 136px; }

.podcast-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 15px 14px;
  color: var(--muted);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .07em;
  line-height: 1.25;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.podcast-table td {
  border-bottom: 1px solid var(--line);
  padding: 15px 14px;
  color: var(--ink-soft);
  font-weight: 650;
  line-height: 1.35;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

.podcast-table tr:last-child td {
  border-bottom: 0;
}

.podcast-table tbody tr:hover td {
  background: #FAFBFC;
}

.rank-cell {
  color: var(--ink) !important;
  font-size: .98rem;
  font-weight: 900;
  white-space: nowrap;
}

.podcast-cell {
  overflow: hidden;
}

.podcast-media {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.cover {
  display: block;
  flex: none;
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  object-fit: cover;
}

.podcast-copy {
  min-width: 0;
}

.podcast-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.25;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.podcast-copy span {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  color: var(--muted);
  font-size: .79rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-link {
  color: var(--accent);
  font-weight: 850;
}

.category-link:hover {
  text-decoration: underline;
}

.chart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  border: 1px solid #d6e4fd;
  border-radius: 999px;
  background: var(--accent-soft);
  padding: 5px 10px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
}

.links-cell {
  white-space: normal;
}

.links-cell a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 55px;
  margin: 3px 4px 3px 0;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 7px 10px;
  color: var(--ink);
  font-size: .76rem;
  font-weight: 900;
  transition: .2s;
}

.links-cell a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 26px 0 8px;
}

.page-num,
.page-btn,
.page-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: #fff;
  padding: 0 13px;
  color: var(--ink-soft);
  font-size: .84rem;
  font-weight: 600;
}

.page-btn {
  min-width: auto;
}

.page-num:hover,
.page-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.page-num.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.page-dots {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 20px;
  background: var(--surface);
  padding: 34px;
}

.empty-state h2 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.empty-state p {
  color: var(--ink-soft);
}

code {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  padding: 2px 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .88em;
}

.seo-block {
  padding: 24px 24px 64px;
}

.method-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
  padding: 34px 32px;
}

.method-card .eyebrow {
  color: #93b4fb;
}

.method-card .eyebrow:before {
  background: #93b4fb;
}

.method-card h2,
.category-panel h2,
.faq-section h2 {
  margin: 10px 0 10px;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 900;
  letter-spacing: -.025em;
}

.method-card p {
  max-width: 88ch;
  color: rgba(255, 255, 255, .76);
  font-weight: 550;
}

.method-card code {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
  color: #fff;
}

.category-panel {
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  padding: 28px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.category-grid a {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  padding: 15px;
  transition: .2s;
}

.category-grid a:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.category-grid span {
  overflow: hidden;
  color: var(--ink);
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-grid small {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 750;
}

.faq-section {
  margin-top: 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 24px;
}

.faq-grid h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.3;
}

.faq-grid p {
  color: var(--ink-soft);
  font-size: .92rem;
}

footer {
  margin-top: 10px;
  background: var(--ink);
  color: #fff;
  padding: 44px 0 28px;
}

.foot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.foot-top .logo {
  color: #fff;
}

.foot-top .logo .pd {
  background: var(--accent);
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: .86rem;
  font-weight: 700;
}

.foot-links a {
  color: rgba(255, 255, 255, .7);
}

.foot-links a:hover {
  color: #fff;
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  color: rgba(255, 255, 255, .45);
  font-size: .8rem;
  font-weight: 550;
}

@media (max-width: 1080px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .table-head {
    display: block;
  }

  .table-head p {
    margin-top: 10px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .category-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .wrap {
    padding: 0 18px;
  }

  .nav {
    height: 60px;
  }

  .back {
    display: none;
  }

  .catalog-hero {
    padding: 38px 0 20px;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 22px;
  }

  .controls {
    top: 60px;
  }

  .chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .chips::-webkit-scrollbar {
    display: none;
  }

  .range-note {
    width: 100%;
  }

  .table-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .table-shell {
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .podcast-table {
    min-width: 0;
    border-collapse: collapse;
    table-layout: auto;
  }

  .podcast-table colgroup,
  .podcast-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .podcast-table,
  .podcast-table tbody,
  .podcast-table tr,
  .podcast-table td {
    display: block;
    width: 100%;
  }

  .podcast-table tbody {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .podcast-table tr {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    padding: 16px;
    box-shadow: var(--shadow-sm);
  }

  .podcast-table tbody tr:hover td {
    background: transparent;
  }

  .podcast-table td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    padding: 8px 0;
  }

  .podcast-table td:before {
    content: attr(data-label);
    flex: none;
    min-width: 94px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .podcast-table td.podcast-cell {
    display: block;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  .podcast-table td.podcast-cell:before {
    display: none;
  }

  .podcast-media {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: center;
    padding-right: 58px;
  }

  .rank-cell {
    position: absolute;
    top: 20px;
    right: 18px;
    width: auto !important;
    border-radius: 999px;
    background: var(--ink);
    padding: 5px 10px !important;
    color: #fff !important;
    font-size: .78rem;
    line-height: 1;
  }

  .links-cell {
    justify-content: flex-start;
  }

  .category-panel,
  .method-card {
    padding: 28px 24px;
  }

  .category-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 30px 24px;
  }

  .hero-card__number {
    font-size: 3.2rem;
  }

  .foot-top {
    align-items: flex-start;
  }

  .foot-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* Iteration 3: UI polish */
:root {
  --shadow: 0 18px 42px -28px rgba(10, 10, 10, .34);
  --shadow-sm: 0 12px 28px -22px rgba(10, 10, 10, .28);
}

body {
  font-weight: 400;
}

.wordmark,
.logo,
.btn,
.nav-links a,
.back {
  font-weight: 700;
}

.eyebrow {
  font-weight: 800;
  letter-spacing: .16em;
}

h1 {
  font-weight: 800;
  letter-spacing: -.045em;
}

.sub {
  font-weight: 500;
  line-height: 1.55;
}

.intro {
  line-height: 1.75;
}

.hero-card {
  padding: 30px 28px;
  border-radius: 22px;
}

.hero-card__number {
  font-weight: 800;
}

.hero-card__text,
.hero-card__mini span,
.stat small,
.range-note,
.method-card p,
.foot-bottom {
  font-weight: 500;
}

.stat b {
  font-weight: 800;
}

.controls-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  justify-content: stretch;
  gap: 12px;
}

.filters-line {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.chips-main {
  flex: 1 1 auto;
  min-width: 0;
}

.chip {
  border-width: 1px;
  padding: 8px 13px;
  font-size: .8rem;
  font-weight: 600;
}

.chip span {
  font-weight: 700;
}

.more-categories {
  position: relative;
  flex: none;
}

.more-categories summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.more-categories summary::-webkit-details-marker {
  display: none;
}

.chip-more:after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .72;
  transition: .2s;
}

.more-categories[open] .chip-more {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.more-categories[open] .chip-more span {
  color: rgba(255, 255, 255, .68);
}

.more-categories[open] .chip-more:after {
  transform: rotate(225deg) translate(-2px, -1px);
}

.more-categories-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(560px, calc(100vw - 48px));
  max-height: 370px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 12px;
  box-shadow: 0 24px 60px -28px rgba(10, 10, 10, .38);
}

.more-category {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  padding: 11px 12px;
  transition: .2s;
}

.more-category:hover,
.more-category.active {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.more-category span {
  overflow: hidden;
  color: var(--ink-soft);
  font-size: .82rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.more-category small {
  flex: none;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.more-category.active span,
.more-category:hover span {
  color: var(--accent);
}

.range-note {
  justify-self: start;
}

.table-head h2,
.method-card h2,
.category-panel h2,
.faq-section h2 {
  font-weight: 800;
}

.table-head p {
  font-weight: 400;
  line-height: 1.7;
}

.table-shell {
  border-radius: 20px;
}

.podcast-table {
  min-width: 1060px;
  font-size: .84rem;
}

.podcast-table .col-rank { width: 62px; }
.podcast-table .col-podcast { width: 378px; }
.podcast-table .col-category { width: 142px; }
.podcast-table .col-count { width: 98px; }
.podcast-table .col-date { width: 112px; }
.podcast-table .col-chart { width: 108px; }
.podcast-table .col-rating { width: 100px; }
.podcast-table .col-links { width: 118px; }

.podcast-table th {
  padding: 13px 12px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .075em;
}

.podcast-table td {
  padding: 15px 12px;
  font-weight: 500;
  overflow-wrap: normal;
}

.rank-cell {
  font-size: .92rem;
  font-weight: 700;
}

.podcast-media {
  gap: 12px;
}

.cover {
  width: 58px;
  height: 58px;
  border-radius: 13px;
}

.podcast-copy strong {
  font-weight: 800;
  letter-spacing: -.015em;
}

.podcast-copy span {
  font-weight: 500;
}

.category-link {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  padding: 5px 9px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.15;
}

.category-link:hover {
  text-decoration: none;
  background: #dbeafe;
}

.chart-badge {
  min-width: 38px;
  padding: 4px 9px;
  font-size: .74rem;
  font-weight: 800;
}

.mobile-chart-badge {
  display: none;
}

.links-cell {
  white-space: nowrap;
}

.links-cell a.source-link {
  width: 38px;
  min-width: 38px;
  height: 38px;
  margin: 2px 4px 2px 0;
  border-width: 1px;
  border-radius: 999px;
  padding: 0;
  color: var(--ink);
  background: #fff;
}

.links-cell a.source-link:hover {
  background: var(--accent-soft);
  color: var(--accent);
  transform: translateY(-1px);
}

.source-link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.source-link--rss {
  color: #f97316 !important;
}

.source-link--rss:hover {
  color: #ea580c !important;
  background: #fff7ed !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.faq-grid h3,
.category-grid span {
  font-weight: 800;
}

@media (max-width: 920px) {
  .filters-line {
    align-items: flex-start;
  }

  .chips-main {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .chips-main::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .wrap {
    padding: 0 16px;
  }

  .catalog-hero {
    padding: 32px 0 18px;
  }

  h1 {
    max-width: 13ch;
    margin-top: 12px;
    font-size: clamp(2.05rem, 12vw, 3rem);
    line-height: .98;
  }

  .sub {
    font-size: .96rem;
  }

  .intro {
    font-size: .92rem;
  }

  .hero-card {
    padding: 24px;
  }

  .hero-card__number {
    font-size: 3rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
  }

  .stat {
    border-radius: 14px;
    padding: 14px;
  }

  .stat b {
    font-size: 1.28rem;
  }

  .stat small {
    font-size: .73rem;
    line-height: 1.35;
  }

  .controls {
    padding: 12px 0;
  }

  .filters-line {
    align-items: center;
    gap: 8px;
  }

  .chips {
    gap: 7px;
  }

  .chip {
    padding: 8px 12px;
    font-size: .78rem;
  }

  .more-categories-menu {
    right: 0;
    grid-template-columns: 1fr;
    width: calc(100vw - 32px);
    max-height: 62vh;
    padding: 10px;
  }

  .range-note {
    width: 100%;
    font-size: .78rem;
  }

  .table-section {
    padding: 24px 16px 28px;
  }

  .table-head {
    margin-bottom: 14px;
  }

  .table-head h2 {
    font-size: 1.7rem;
  }

  .table-head p {
    font-size: .9rem;
  }

  .podcast-table tr {
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 14px 34px -26px rgba(10, 10, 10, .42);
  }

  .podcast-table td {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--ink-soft);
    font-size: .92rem;
    font-weight: 500;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .podcast-table td:before {
    min-width: 0;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .09em;
  }

  .podcast-table td.podcast-cell {
    position: relative;
    display: block;
    padding: 0 0 13px;
    border-bottom: 1px solid var(--line);
  }

  .podcast-media {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    padding-right: 54px;
  }

  .cover {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .podcast-copy strong {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.025em;
  }

  .podcast-copy span {
    display: -webkit-box;
    margin-top: 6px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 500;
    line-height: 1.35;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .rank-cell,
  .chart-cell {
    display: none !important;
  }

  .mobile-chart-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    min-width: 42px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d6e4fd;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: .78rem;
    font-weight: 800;
    line-height: 1;
  }

  .category-link {
    justify-self: end;
    font-size: .84rem;
  }

  .podcast-table td.links-cell {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding-top: 12px;
  }

  .podcast-table td.links-cell:before {
    margin-right: auto;
  }

  .links-cell a.source-link {
    width: 42px;
    min-width: 42px;
    height: 42px;
    margin: 0;
  }

  .source-link svg {
    width: 19px;
    height: 19px;
  }

  .category-panel,
  .method-card,
  .faq-grid article {
    border-radius: 20px;
    padding: 22px 18px;
  }
}

@media (max-width: 420px) {
  .stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .podcast-table tr {
    padding: 13px;
  }

  .podcast-media {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 10px;
    padding-right: 48px;
  }

  .cover {
    width: 54px;
    height: 54px;
  }

  .podcast-copy strong {
    font-size: .96rem;
  }

  .mobile-chart-badge {
    min-width: 38px;
    height: 30px;
    font-size: .74rem;
  }
}

/* Iteration 3.2: scoped mobile overflow fix, desktop untouched */
@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  header,
  footer,
  .wrap,
  .catalog-hero,
  .controls,
  .table-section,
  .table-shell,
  .podcast-table {
    max-width: 100%;
  }

  .controls,
  .controls-row,
  .filters-line,
  .chips-main,
  .table-section,
  .table-shell {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .filters-line {
    overflow: visible;
  }

  .chips-main {
    flex: 1 1 0;
    min-width: 0;
  }

  .more-categories {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .more-categories-menu {
    right: 0;
    width: min(360px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
  }

  .table-section {
    overflow: hidden;
  }

  .table-shell {
    overflow: visible;
  }

  .podcast-table {
    display: block;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    table-layout: auto;
  }

  .podcast-table tbody {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .podcast-table tr {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .podcast-table td {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .podcast-table td:before,
  .podcast-table td > * {
    min-width: 0;
  }

  .podcast-table td:before {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .podcast-table td.podcast-cell {
    overflow: hidden;
  }

  .podcast-media {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .podcast-copy {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .podcast-copy strong,
  .podcast-copy span {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .category-link {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .podcast-table td.links-cell {
    min-width: 0;
    overflow: hidden;
  }
}

@media (max-width: 420px) {
  .podcast-table td {
    gap: 8px;
  }

  .podcast-media {
    padding-right: 42px;
  }
}

/* Iteration 16: compact podcast catalog hero + lighter filters */
.page-podcasts .catalog-hero{
  position:relative;
  overflow:hidden;
  padding:70px 0 28px;
  color:#fff;
  background:
    linear-gradient(180deg,rgba(48,0,92,.72) 0%,rgba(72,0,126,.78) 46%,rgba(36,0,82,.88) 100%),
    radial-gradient(circle at 50% 12%,rgba(179,108,255,.36),transparent 42%),
    url('/assets/images/podcast-catalog-hero.jpg') center center/cover no-repeat,
    linear-gradient(135deg,#1E0B4B 0%,#4C0C78 58%,#250A4D 100%);
  isolation:isolate;
}

.page-podcasts .catalog-hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg,rgba(0,0,0,.02) 0%,rgba(0,0,0,.18) 100%),
    radial-gradient(circle at 82% 80%,rgba(245,79,216,.22),transparent 30%);
  z-index:-1;
}

.page-podcasts .catalog-hero__inner{
  display:grid;
  gap:32px;
  align-items:end;
}

.page-podcasts .catalog-hero__copy{
  max-width:980px;
  margin:0 auto;
  text-align:center;
}

.page-podcasts .catalog-hero h1{
  max-width:none;
  margin:0 auto 18px;
  color:#fff;
  font-size:clamp(2.45rem,5.6vw,5.1rem);
  line-height:.98;
  letter-spacing:-.065em;
  font-weight:600;
  text-wrap:balance;
  text-shadow:0 22px 60px rgba(0,0,0,.34);
}

.page-podcasts .catalog-hero .sub{
  max-width:820px;
  margin:0 auto;
  color:rgba(255,255,255,.88);
   font-size:clamp(1.05rem,1.7vw,1.28rem);
    line-height:1.55;
    font-weight:400;
  text-shadow:0 10px 32px rgba(0,0,0,.24);
}

.page-podcasts .catalog-hero .intro,
.page-podcasts .hero-card,
.page-podcasts .stats-row{
  display:none !important;
}

.page-podcasts .catalog-hero__stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
  max-width:940px;
  width:100%;
  margin:8px auto 0;
  padding-top:8px;
}

.page-podcasts .catalog-hero__stat{
  min-width:0;
  text-align:center;
}

.page-podcasts .catalog-hero__stat b{
  display:block;
  color:#fff;
  font-size:clamp(1.45rem,3vw,2.25rem);
  line-height:1;
  font-weight:600;
  letter-spacing:-.045em;
}

.page-podcasts .catalog-hero__stat small{
  display:block;
  margin-top:7px;
  color:rgba(255,255,255,.70);
  font-size:.78rem;
  line-height:1.28;
  font-weight:650;
}

.page-podcasts .controls{
  position:static;
  top:auto;
  z-index:20;
  margin:0;
  padding:11px 0 10px;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  border-top:0;
  border-bottom:1px solid var(--line);
}

.page-podcasts .controls-row{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:14px;
}

.page-podcasts .filters-line{
  align-items:center;
  gap:8px;
}

.page-podcasts .chips{
  gap:7px;
}

.page-podcasts .chip{
  padding:7px 12px;
  border-radius:999px;
  font-size:.78rem;
  line-height:1;
  border-color:#E1E5EB;
  background:#fff;
}

.page-podcasts .chip.active{
  background:#111827;
  border-color:#111827;
}

.page-podcasts .chip span{
  font-size:.69rem;
}

.page-podcasts .range-note{
  justify-self:end;
  color:#6B7280;
  font-size:.76rem;
  font-weight:750;
}

.page-podcasts .table-section{
  padding-top:18px;
}

.page-podcasts .table-head{
  margin-bottom:14px;
}

.page-podcasts .table-head h2{
  margin-top:8px;
  font-size:clamp(1.45rem,2.6vw,2.05rem);
}

.page-podcasts .table-head p{
  max-width:54ch;
  font-size:.9rem;
  line-height:1.62;
}

@media(max-width:920px){
  .page-podcasts .catalog-hero{
    padding:54px 0 24px;
    background-position:center center;
  }

  .page-podcasts .catalog-hero__copy{
    text-align:left;
    margin:0;
  }

  .page-podcasts .catalog-hero h1,
  .page-podcasts .catalog-hero .sub{
    margin-left:0;
    margin-right:0;
  }

  .page-podcasts .catalog-hero__stats{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
    margin-top:2px;
  }

  .page-podcasts .controls-row{
    grid-template-columns:1fr;
    gap:7px;
  }

  .page-podcasts .range-note{
    justify-self:start;
  }
}

@media(max-width:680px){
  .page-podcasts .catalog-hero{
    padding:36px 0 18px;
    background-position:center top;
  }

  .page-podcasts .catalog-hero__inner{
    gap:22px;
  }

  .page-podcasts .catalog-hero h1{
    max-width:11.5ch;
    font-size:clamp(2.15rem,11vw,3.35rem);
    line-height:.98;
    margin-bottom:14px;
  }

  .page-podcasts .catalog-hero .sub{
    max-width:34ch;
    font-size:.95rem;
    line-height:1.55;
  }

  .page-podcasts .catalog-hero__stats{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:8px;
    margin-top:0;
    overflow:hidden;
  }

  .page-podcasts .catalog-hero__stat b{
    font-size:1.12rem;
  }

  .page-podcasts .catalog-hero__stat small{
    margin-top:5px;
    font-size:.61rem;
    line-height:1.18;
    font-weight:650;
  }

  .page-podcasts .controls{
    top:auto;
    padding:8px 0 7px;
  }

  .page-podcasts .filters-line{
    gap:7px;
    align-items:center;
  }

  .page-podcasts .chips-main{
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:0;
    scrollbar-width:none;
  }

  .page-podcasts .chips-main::-webkit-scrollbar{display:none}

  .page-podcasts .chip{
    padding:7px 10px;
    font-size:.74rem;
  }

  .page-podcasts .chip span{
    font-size:.65rem;
  }

  .page-podcasts .range-note{
    display:none;
  }

  .page-podcasts .table-section{
    padding-top:16px;
  }

  .page-podcasts .table-head{
    margin-bottom:12px;
  }

  .page-podcasts .table-head .eyebrow{
    display:none;
  }

  .page-podcasts .table-head h2{
    margin:0;
    font-size:1.46rem;
  }

  .page-podcasts .table-head p{
    display:none;
  }
}

@media(max-width:420px){
  .page-podcasts .catalog-hero__stats{
    gap:6px;
  }

  .page-podcasts .catalog-hero__stat b{
    font-size:1rem;
  }

  .page-podcasts .catalog-hero__stat small{
    font-size:.56rem;
  }
}

/* Iteration 17: cleaner catalog navigation, table and mobile cards */
.page-podcasts .controls{
  padding:12px 0 12px;
  background:#fff;
  border-bottom:1px solid #E8ECF2;
}

.page-podcasts .controls-row{
  grid-template-columns:minmax(0,1fr) auto;
  gap:18px;
}

.page-podcasts .filters-line{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
}

.page-podcasts .chips-main{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
}

.page-podcasts .chip{
  min-height:34px;
  padding:7px 13px;

  background:#fff;
  color:#343A45;
  box-shadow:none;
  font-size:.8rem;
  font-weight:600;
  letter-spacing:-.01em;
}

.page-podcasts .chip span{
  color:#737B8A;
  font-size:.72rem;
  font-weight:600;
}

.page-podcasts .chip:hover{
  border-color:#CBD5E1;
  background:#F8FAFC;
  color:#111827;
}

.page-podcasts .chip.active{
  background:#111827;
  border-color:#111827;
  color:#fff;
}

.page-podcasts .chip.active span{
  color:rgba(255,255,255,.68);
}

.page-podcasts .chip-more{
  padding-right:16px;
  background:#F8FAFC;
}

.page-podcasts .more-categories-menu{
  border-radius:20px;
  border-color:#E3E8EF;
  box-shadow:0 28px 70px -36px rgba(15,23,42,.42);
}

.page-podcasts .range-note{
  color:#707887;
  font-weight:720;
}

.page-podcasts .table-section{
  padding-top:26px;
}

.page-podcasts .table-head{
  display:none !important;
}

.page-podcasts .table-shell{
  border:1px solid #E5EAF0;
  border-radius:18px;
  box-shadow:none;
  background:#fff;
}

.page-podcasts .podcast-table{
  min-width:1040px;
  font-size:.84rem;
}

.page-podcasts .podcast-table .col-rank{width:56px}
.page-podcasts .podcast-table .col-podcast{width:390px}
.page-podcasts .podcast-table .col-category{width:136px}
.page-podcasts .podcast-table .col-count{width:92px}
.page-podcasts .podcast-table .col-date{width:108px}
.page-podcasts .podcast-table .col-chart{width:102px}
.page-podcasts .podcast-table .col-rating{width:88px}
.page-podcasts .podcast-table .col-links{width:112px}

.page-podcasts .podcast-table th{
  background:#F7F8FA;
  padding:12px 12px;
  color:#7B8493;
  font-size:.65rem;
  font-weight:760;
  letter-spacing:.075em;
}

.page-podcasts .podcast-table td{
  padding:13px 12px;
  border-bottom:1px solid #EEF1F5;
  color:#3B414D;
  font-weight:500;
}

.page-podcasts .podcast-table tbody tr:hover td{
  background:#FBFCFE;
}

.page-podcasts .rank-cell{
  color:#111827 !important;
  font-weight:700;
}

.page-podcasts .cover{
  width:56px;
  height:56px;
  border-radius:13px;
  border-color:#E4E8EF;
}

.page-podcasts .podcast-copy strong{
  color:#090B0F;
  font-size:.9rem;
  font-weight:650;
  letter-spacing:-.02em;
}

.page-podcasts .podcast-copy span{
  color:#697180;
  font-size:.78rem;
  font-weight:500;
}

.page-podcasts .category-link{
  display:inline;
  padding:0;
  border-radius:0;
  background:transparent;
  color:#2563EB;
  font-size:.82rem;
  font-weight:700;
  line-height:1.25;
}

.page-podcasts .category-link:hover{
  background:transparent;
  color:#1749B8;
  text-decoration:underline;
  text-underline-offset:3px;
}

.page-podcasts .chart-badge{
  min-width:0;
  border:0;
  border-radius:0;
  background:transparent;
  padding:0;
  color:#2563EB;
  font-size:.82rem;
  font-weight:800;
}

.page-podcasts .type-cell{
  color:#4B5563;
  font-weight:560;
}

.page-podcasts .links-cell{
  white-space:nowrap;
}

.page-podcasts .links-cell a.source-link{
  width:34px;
  min-width:34px;
  height:34px;
  margin:0 5px 0 0;
  border:1px solid #E1E6EE;
  border-radius:11px;
  background:#fff;
  color:#111827;
  box-shadow:none;
}

.page-podcasts .links-cell a.source-link:hover{
  transform:translateY(-1px);
  border-color:#C9D3E1;
  background:#F8FAFC;
  color:#111827;
}

.page-podcasts .source-link__img{
  display:block;
  width:18px;
  height:18px;
  object-fit:contain;
}

.page-podcasts .source-link__fallback{
  display:block;
  width:18px;
  height:18px;
  line-height:0;
}

.page-podcasts .source-link__fallback svg{
  width:18px;
  height:18px;
  display:block;
  fill:currentColor;
}

.page-podcasts .source-link--rss,
.page-podcasts .source-link--rss:hover{
  color:#F97316 !important;
}

.page-podcasts .source-link--spotify,
.page-podcasts .source-link--spotify:hover{
  color:#1DB954 !important;
}

.page-podcasts .source-link--apple,
.page-podcasts .source-link--apple:hover{
  color:#7C3AED !important;
}

@media(max-width:920px){
  .page-podcasts .controls-row{
    grid-template-columns:1fr;
    gap:8px;
  }

  .page-podcasts .filters-line{
    grid-template-columns:1fr auto;
    gap:10px;
  }

  .page-podcasts .chips-main{
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:2px;
    scrollbar-width:none;
  }

  .page-podcasts .chips-main::-webkit-scrollbar{display:none}
}

@media(max-width:680px){
  .page-podcasts .controls{
    padding:10px 0 11px;
  }

  .page-podcasts .filters-line{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:9px;
  }

  .page-podcasts .chips-main{
    width:100%;
    max-width:100%;
    gap:8px;
    overflow-x:auto;
    padding-bottom:0;
  }

  .page-podcasts .chip{
    min-height:34px;
    padding:7px 12px;
    border-radius:13px;
    font-size:.78rem;
  }

  .page-podcasts .more-categories{
    width:100%;
  }

  .page-podcasts .chip-more{
    width:100%;
    justify-content:center;
    min-height:40px;
    background:#F6F8FB;
    border-style:dashed;
  }

  .page-podcasts .more-categories-menu{
    position:static;
    width:100%;
    max-width:100%;
    max-height:46vh;
    margin-top:9px;
    grid-template-columns:1fr;
    box-shadow:none;
    border-radius:16px;
  }

  .page-podcasts .table-section{
    padding-top:18px;
    overflow:visible;
  }

  .page-podcasts .table-shell{
    border:0;
    border-radius:0;
    background:transparent;
    overflow:visible;
  }

  .page-podcasts .podcast-table tbody{
    gap:12px;
  }

  .page-podcasts .podcast-table tr{
    padding:14px;
    border:1px solid #E3E8EF;
    border-radius:20px;
    background:#fff;
    box-shadow:0 16px 44px -34px rgba(15,23,42,.35);
  }

  .page-podcasts .podcast-table td{
    padding:7px 0;
    color:#3D4450;
    font-size:.91rem;
    font-weight:500;
  }

  .page-podcasts .podcast-table td:before{
    color:#8B93A1;
    font-size:.64rem;
    font-weight:780;
    letter-spacing:.08em;
  }

  .page-podcasts .podcast-table td.podcast-cell{
    padding-bottom:12px;
    border-bottom:1px solid #EEF1F5;
  }

  .page-podcasts .podcast-media{
    grid-template-columns:58px minmax(0,1fr);
    gap:12px;
    align-items:center;
    padding-right:50px;
  }

  .page-podcasts .cover{
    width:58px;
    height:58px;
    border-radius:14px;
  }

  .page-podcasts .podcast-copy strong{
    font-size:1rem;
    line-height:1.18;
    font-weight:760;
  }

  .page-podcasts .podcast-copy span{
    font-size:.82rem;
    line-height:1.35;
  }

  .page-podcasts .mobile-chart-badge{
    border:0;
    background:#EEF4FF;
    color:#2563EB;
    border-radius:11px;
    height:30px;
    min-width:38px;
    font-weight:820;
  }

  .page-podcasts .category-link{
    justify-self:end;
    max-width:160px;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:.88rem;
  }

  .page-podcasts .type-cell{
    color:#111827;
  }

  .page-podcasts .podcast-table td.links-cell{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    gap:9px;
    padding-top:12px;
    border-top:1px solid #EEF1F5;
  }

  .page-podcasts .podcast-table td.links-cell:before{
    display:none;
  }

  .page-podcasts .links-cell a.source-link{
    width:40px;
    min-width:40px;
    height:40px;
    margin:0;
    border-radius:13px;
  }

  .page-podcasts .source-link__img,
  .page-podcasts .source-link__fallback,
  .page-podcasts .source-link__fallback svg{
    width:19px;
    height:19px;
  }
}

@media(max-width:420px){
  .page-podcasts .podcast-table tr{
    padding:13px;
  }

  .page-podcasts .podcast-media{
    grid-template-columns:54px minmax(0,1fr);
    padding-right:44px;
  }

  .page-podcasts .cover{
    width:54px;
    height:54px;
  }
}

/* Iteration 18: service/studios promos, compact tags, softer FAQ and table note */
.page-podcasts .catalog-submit-line{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  margin:-4px 0 12px;
  color:#6B7280;
  font-size:.88rem;
  line-height:1.35;
  font-weight:560;
}

.page-podcasts .catalog-submit-line a{
  color:#7C3AED;
  font-weight:760;
  text-decoration:none;
}

.page-podcasts .catalog-submit-line a:hover{
  color:#2563EB;
  text-decoration:underline;
  text-underline-offset:3px;
}

.page-podcasts .seo-block--catalog-links{
  display:grid;
  gap:42px;
  padding-top:44px;
  padding-bottom:72px;
}

.page-podcasts .catalog-promo-stack{
  display:grid;
  gap:32px;
}

.page-podcasts .catalog-promo{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(320px,1fr);
  gap:34px;
  align-items:center;
  min-height:330px;
  padding:38px 46px;
  border:1px solid #EEF1F5;
  border-radius:34px;
  background:#fff;
  overflow:hidden;
  position:relative;
}

.page-podcasts .catalog-promo--service{
  background:
    radial-gradient(circle at 86% 38%, rgba(124,58,237,.10), transparent 34%),
    linear-gradient(180deg,#fff 0%,#FBFCFF 100%);
}

.page-podcasts .catalog-promo--studios{
  grid-template-columns:minmax(320px,1fr) minmax(0,.92fr);
  background:
    radial-gradient(circle at 14% 48%, rgba(37,99,235,.10), transparent 36%),
    linear-gradient(180deg,#fff 0%,#FBFCFF 100%);
}

.page-podcasts .catalog-promo__copy{
  position:relative;
  z-index:2;
  min-width:0;
}

.page-podcasts .catalog-promo h2{
  margin:0 0 16px;
  max-width:11.5ch;
  color:var(--ink);
  font-size:clamp(2.2rem,4.6vw,4.45rem);
  line-height:.98;
  font-weight:600;
  letter-spacing:-.055em;
}

.page-podcasts .catalog-promo p{
  max-width:52ch;
  margin:0;
  color:var(--ink-soft);
    font-size:clamp(1rem,1.35vw,1.15rem);
    line-height:1.7;
    font-weight:500;
}

.page-podcasts .catalog-text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:24px;
  color:var(--ink-soft);
  font-size:.96rem;
  line-height:1.2;
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:5px;
  text-decoration-thickness:1.5px;
}

.page-podcasts .catalog-text-link::after{
  content:"→";
  color:var(--ink-soft);
  font-size:1.18em;
  text-decoration:none;
}

.page-podcasts .catalog-promo__visual{
  min-height:270px;
  border-radius:30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(124,58,237,.16), transparent 42%),
    linear-gradient(135deg, rgba(124,58,237,.10), rgba(37,99,235,.06));
  position:relative;
  overflow:hidden;
  box-shadow:inset 0 0 0 1px rgba(124,58,237,.08);
}

.page-podcasts .catalog-promo--service .catalog-promo__visual{
  background:
    url('/assets/images/catalog-service-promo.png') center center/contain no-repeat,
    radial-gradient(circle at 48% 50%, rgba(168,85,247,.18), transparent 42%),
    linear-gradient(135deg, rgba(124,58,237,.10), rgba(37,99,235,.05));
}

.page-podcasts .catalog-promo--studios .catalog-promo__visual{
  background:
    url('/assets/images/catalog-studios-promo.png') center center/contain no-repeat,
    radial-gradient(circle at 50% 50%, rgba(37,99,235,.16), transparent 42%),
    linear-gradient(135deg, rgba(37,99,235,.09), rgba(66,199,244,.05));
}

.page-podcasts .catalog-promo__visual::before{
  content:"";
  position:absolute;
  inset:12%;
  border:2px dashed rgba(124,58,237,.20);
  border-radius:999px;
  opacity:.72;
}

.page-podcasts .catalog-promo--studios .catalog-promo__visual::before{
  border-color:rgba(37,99,235,.20);
}

.page-podcasts .catalog-promo__visual::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:120px;
  height:120px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:rgba(255,255,255,.58);
  box-shadow:0 18px 55px rgba(15,23,42,.10), inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter:blur(10px);
}

.page-podcasts .studio-shortcuts{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}

.page-podcasts .studio-shortcuts a{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:9px 15px;
  border-radius:999px;
  border:1px solid var(--ink-soft);
  background:#fff;
  color:var(--ink-soft);
  font-size:.86rem;
  font-weight:780;
  text-decoration:none;
}

.page-podcasts .studio-shortcuts a:hover{
  border-color:#2563EB;
}

.page-podcasts .category-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  align-items:center;
  padding:4px 0;
}

.page-podcasts .category-tags a{
  color:#A100F5;
  font-size:1.2rem;
  line-height:1.2;
  font-weight:780;
  letter-spacing:-.02em;
  text-decoration:none;
}

.page-podcasts .category-tags a:nth-child(3n+2){color:#2563EB}
.page-podcasts .category-tags a:nth-child(3n+3){color:#F54FD8}
.page-podcasts .category-tags a:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}

.page-podcasts .faq-section--soft{
  margin-top:2px;
  padding:34px;
  border:1px solid #E6EAF1;
  border-radius:30px;
  background:
    radial-gradient(circle at 8% 12%, rgba(37,99,235,.075), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(179,108,255,.08), transparent 30%),
    linear-gradient(180deg,#fff 0%,#FAFBFF 100%);
  box-shadow:0 22px 70px rgba(15,23,42,.045);
}

.page-podcasts .faq-section--soft h2{
  margin:0 0 20px;
  color:#111827;
  font-size:clamp(1.55rem,2.8vw,2.35rem);
  line-height:1.04;
  letter-spacing:-.045em;
  font-weight:650;
}

.page-podcasts .faq-section--soft .faq-grid{
  gap:24px;
}

.page-podcasts .faq-section--soft article{
  border-color:rgba(226,232,240,.88);
  background:rgba(255,255,255,.74);
  box-shadow:none;
}

.page-podcasts .faq-section--soft article:hover{
  transform:none;
}

@media(max-width:900px){
  .page-podcasts .catalog-promo,
  .page-podcasts .catalog-promo--studios{
    grid-template-columns:1fr;
    gap:24px;
    padding:32px 28px;
    min-height:0;
  }

  .page-podcasts .catalog-promo--studios .catalog-promo__visual{
    order:2;
  }

  .page-podcasts .catalog-promo--studios .catalog-promo__copy{
    order:1;
  }

  .page-podcasts .catalog-promo__visual{
    min-height:220px;
  }
}

@media(max-width:680px){
  .page-podcasts .catalog-submit-line{
    justify-content:flex-start;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:4px 8px;
    margin:0 0 10px;
    font-size:.84rem;
  }

  .page-podcasts .seo-block--catalog-links{
    gap:24px;
    padding-top:34px;
    padding-bottom:52px;
  }

  .page-podcasts .catalog-promo,
  .page-podcasts .catalog-promo--studios{
    padding:26px 22px;
    border-radius:24px;
  }

  .page-podcasts .catalog-promo h2{
    max-width:100%;
    font-size:clamp(2rem,10vw,3rem);
  }

  .page-podcasts .catalog-promo p{
    font-size:.96rem;
    line-height:1.58;
  }

  .page-podcasts .catalog-promo__visual{
    min-height:185px;
    border-radius:22px;
  }

  .page-podcasts .catalog-promo__visual::after{
    width:90px;
    height:90px;
  }

  .page-podcasts .category-tags{
    gap:8px 13px;
    max-height:82px;
    overflow:hidden;
  }

  .page-podcasts .category-tags a{
    font-size:.9rem;
  }

  .page-podcasts .faq-section--soft{
    padding:24px 20px;
    border-radius:24px;
  }
}

/* Iteration 23: promo blocks as clean image slots, no borders/decorative frames */
.page-podcasts .catalog-promo{
  padding:34px 0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  overflow:visible;
}

.page-podcasts .catalog-promo--service,
.page-podcasts .catalog-promo--studios{
  background:transparent;
}

.page-podcasts .catalog-promo__visual{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:0;
  aspect-ratio:16 / 9;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  overflow:visible;
}

.page-podcasts .catalog-promo__visual::before,
.page-podcasts .catalog-promo__visual::after{
  content:none;
  display:none;
}

.page-podcasts .catalog-promo__visual img{
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
  max-height:100%;
  object-fit:contain;
  border:0;
  border-radius:0;
  box-shadow:none;
}

@media(max-width:900px){
  .page-podcasts .catalog-promo,
  .page-podcasts .catalog-promo--studios{
    padding:24px 0;
  }

  .page-podcasts .catalog-promo__visual{
    min-height:0;
    aspect-ratio:16 / 9;
  }
}

@media(max-width:680px){
  .page-podcasts .catalog-promo,
  .page-podcasts .catalog-promo--studios{
    padding:20px 0;
    border-radius:0;
  }

  .page-podcasts .catalog-promo__visual{
    min-height:0;
    border-radius:0;
  }
}
