.podcasts.block {
  background: var(--colors-common-secondary-50, #F9FAFB);
}

.podcasts.block h3 {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 48px;
}

.featured-podcast > a {
  display: block;
  margin-bottom: 48px;
}

.featured-podcast > a:first-child {
  position: relative;
}

.featured-podcast figure img {
  aspect-ratio: 738 / 446;
  object-fit: cover;
  object-position: center center;
}

.featured-podcast .corner-play-button {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 89px;
}

.podcasts.block a.button {
  margin-bottom: 64px;
}

.meta-data {
  color: var(--colors-base-default-500, #6B7280);
}

.podcasts.block h5 {
  margin: 16px 0;
}

.podcasts.block h6 {
  margin: 20px 0 32px;
}

.chip.runtime {
  margin-right: 20px;
}

.podcasts.block .play-link {
  color: var(--colors-base-secondary, #333742);
  display: inline-flex;
  align-items: center;
  line-height: 100%;
}

.podcasts.block .play-link svg {
  margin-right: 8px;
}

.podcasts.block hr {
  margin: 48px 0;
}

.podcasts.block hr:last-of-type {
  margin-bottom: 32px;
}

.podcast-subscribe {
  color: var(--colors-common-cyan-400, #4D9FC3);
}

.podcast-subscribe .icons {
  margin-top: 32px;
  height: 32px;
}

.podcast-subscribe .icons a {
  display: inline-flex;
}

.podcast-subscribe .icons a:not(:last-child) {
  margin-right: 16px;
}

/* Desktop */ 
@media (min-width: 1280px) {
  .podcasts.block h3 {
    text-align: left;
    margin-bottom: 64px;
  }
  .featured-podcast > a {
    margin-bottom: 64px;
  }
  .other-podcasts {
    grid-column-start: 8;
    grid-column-end: 12;
    display: flex;
    flex-direction: column;
  }
  .podcast .chip {
    font-weight: 700;
  }
  .chip.runtime {
    margin-right: 24px;
  }
  .podcasts.block a.button {
    margin-bottom: 0;
  }
  .podcasts.block hr {
    margin: 32px 0;
  }
  .podcast-subscribe {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
  }
  .podcast-subscribe span {
    max-width: 280px;
  }
  .podcast-subscribe .icons {
    margin-top: 0;
  }
}