.podcastFeedCollection { display: grid; gap: 16px; }
.podcastFeedCollection.is-multiple { gap: 26px; }
.podcastFeed { display: grid; gap: 16px; }
.podcastFeedCollection.is-multiple .podcastFeed + .podcastFeed {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 24px;
}
.podcastFeedIntro {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.podcastFeedIntro img {
  width: 62px;
  height: 62px;
  border-radius: 7px;
  object-fit: cover;
  background: rgba(255,255,255,.08);
}
.podcastFeedIntro strong,
.podcastFeedIntro small { display: block; }
.podcastFeedIntro strong { font-size: 15px; line-height: 1.25; }
.podcastFeedIntro small { margin-top: 5px; color: rgba(255,255,255,.55); line-height: 1.45; }
.podcastEpisodeList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.podcastEpisode {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  background: rgba(255,255,255,.045);
}
.podcastEpisode.is-playing {
  border-color: rgba(var(--accent-rgb), .65);
  background: rgba(var(--accent-rgb), .08);
}
.podcastEpisodeMedia {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #090b0d;
}
.podcastEpisodeMedia::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: rgba(0,0,0,.18);
}
.podcastEpisodeCover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: rgba(255,255,255,.08);
}
.podcastPlayButton {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 50%;
  color: var(--accent-contrast);
  background: var(--accent);
  box-shadow: 0 10px 26px rgba(0,0,0,.42), 0 0 0 5px rgba(0,0,0,.18);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.podcastPlayButton:hover { transform: translate(-50%, -50%) scale(1.06); }
.podcastPlayButton:active { transform: translate(-50%, -50%) scale(.97); }
.podcastPlayButton:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
  box-shadow: 0 10px 26px rgba(0,0,0,.42), 0 0 0 7px rgba(var(--accent-rgb), .42);
}
.podcastPlayButton::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}
.podcastEpisode.is-playing .podcastPlayButton::before {
  width: 12px;
  height: 14px;
  margin: 0;
  border: 0;
  background: linear-gradient(90deg,currentColor 0 34%,transparent 34% 66%,currentColor 66%);
}
.podcastEpisodeBody {
  display: grid;
  min-width: 0;
  flex: 1;
  align-content: start;
  gap: 7px;
  padding: 11px 12px 12px;
}
.podcastEpisodeCopy { min-width: 0; }
.podcastEpisodeMeta {
  display: flex;
  min-height: 14px;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 5px;
  color: rgba(255,255,255,.48);
  font-size: 10px;
}
.podcastEpisodeCopy strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 32px;
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.podcastEpisodeCopy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 5px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 10px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.podcastProgress {
  align-self: end;
  width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255,255,255,.11);
}
.podcastProgress > i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width .2s linear;
}
.podcastPanelState {
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 24px;
  color: rgba(255,255,255,.58);
  text-align: center;
  line-height: 1.55;
}
.podcastRetry {
  min-height: 40px;
  margin-top: 15px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  color: #fff;
  background: rgba(255,255,255,.06);
}

@media (max-width: 620px) {
  .podcastFeed { gap: 13px; }
  .podcastFeedIntro { grid-template-columns: 52px minmax(0, 1fr); gap: 11px; }
  .podcastFeedIntro img { width: 52px; height: 52px; }
  .podcastEpisodeList { grid-template-columns: minmax(0, 1fr); }
  .podcastEpisodeMedia { aspect-ratio: 16 / 8.5; }
  .podcastPlayButton { width: 56px; height: 56px; }
  .podcastEpisodeCopy strong { min-height: 0; font-size: 13px; }
  .podcastEpisodeCopy p { -webkit-line-clamp: 2; }
}

@media (prefers-reduced-motion: reduce) {
  .podcastPlayButton { transition: none; }
}
