.podcast-page {
  background: #fbfcfb;
}

.podcast-main {
  padding: 0;
}

.podcast-shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.podcast-hero {
  padding-block: clamp(34px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(10, 178, 133, 0.12), rgba(255, 243, 233, 0.85) 54%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.podcast-hero__grid {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

@media (min-width: 860px) {
  .podcast-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  }
}

.podcast-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.podcast-hero h1 {
  margin: 0 0 1rem;
  max-width: 13ch;
  text-align: left;
  font-size: clamp(2.15rem, 5vw, 4rem);
  line-height: 1.02;
}

.podcast-hero__lead {
  max-width: 42rem;
  margin: 0 0 1.35rem;
  color: #364152;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.7;
}

.podcast-hero__actions,
.podcast-player__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.podcast-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.05);
}

.podcast-link:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}

.podcast-link--primary,
.podcast-player__button {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

.podcast-link--primary:hover,
.podcast-player__button:hover {
  background: var(--brand-dark);
  color: #ffffff;
}

.podcast-cover {
  width: min(100%, 320px);
  margin-inline: auto;
  padding: 0.7rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.12);
}

.podcast-cover img {
  width: 100%;
  border-radius: 12px;
}

.podcast-section {
  padding-block: clamp(30px, 5vw, 58px);
}

.podcast-player {
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.podcast-player__meta {
  display: grid;
  gap: 0.25rem;
}

.podcast-player__label,
.podcast-playlist__label {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.podcast-player__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.18;
}

.podcast-player__summary {
  margin: 0;
  max-width: 58rem;
  color: var(--muted);
}

.podcast-player audio {
  width: 100%;
}

.podcast-player__button,
.podcast-speed {
  min-height: 2.4rem;
  padding: 0.52rem 0.75rem;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
}

.podcast-player__button {
  cursor: pointer;
}

.podcast-speed {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.podcast-playlist {
  display: grid;
  gap: 1rem;
  margin-top: clamp(18px, 3vw, 28px);
}

.podcast-playlist__top {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 720px) {
  .podcast-playlist__top {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 310px);
    align-items: end;
  }
}

.podcast-playlist h2 {
  margin: 0.15rem 0 0;
  text-align: left;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.podcast-search {
  display: grid;
  gap: 0.35rem;
}

.podcast-search label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.podcast-search input {
  width: 100%;
  min-height: 2.7rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.podcast-search input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(10, 178, 133, 0.15);
}

.podcast-episodes {
  display: grid;
  gap: 0.75rem;
}

.podcast-episode {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(17, 24, 39, 0.035);
}

@media (min-width: 760px) {
  .podcast-episode {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

.podcast-episode[aria-current="true"] {
  border-color: rgba(10, 178, 133, 0.5);
  background: linear-gradient(180deg, var(--brand-soft), #ffffff 72%);
}

.podcast-episode h3 {
  margin: 0 0 0.25rem;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.3;
}

.podcast-episode p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.podcast-episode__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin-top: 0.45rem;
  color: #697386;
  font-size: 0.82rem;
  font-weight: 700;
}

.podcast-episode__play {
  min-width: 6.5rem;
  min-height: 2.45rem;
  border: 1px solid var(--brand-muted);
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.podcast-episode__play:hover {
  border-color: var(--brand);
  background: #ffffff;
}

.podcast-empty {
  display: none;
  margin: 0;
  padding: 1rem;
  border: 1px dashed var(--line);
  border-radius: 10px;
  color: var(--muted);
  text-align: center;
}
