/* Podcast page additions */

/* Colored "All episodes" section — matches the visual rhythm of .hero-heading-left-2.
   Uses the same 80px top/bottom padding so the gap between the intro hero and the
   episodes block feels consistent with section transitions elsewhere on the site. */
.episodes-section {
  background-color: #f5f7fa;
  border-top: 1px solid #e4ebf3;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
}

.episodes-section .heading-14 {
  margin-top: 0;
  margin-bottom: 40px;
}

.latest-episodes {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.episode-item {
  margin: 0;
}

.episode-title {
  font-size: 1.4em;
  line-height: 1.3;
  margin: 0 0 6px;
}

.episode-date {
  margin: 0 0 14px;
  opacity: 0.7;
  font-size: 0.9em;
}

.episode-embed iframe {
  display: block;
  border-radius: 12px;
}

.episode-description {
  margin: 0 0 14px;
  font-size: 1em;
  line-height: 1.5;
}

.episode-loading {
  opacity: 0.6;
  font-size: 0.95em;
}

.episode-audio {
  display: block;
}

@media screen and (max-width: 991px) {
  .episodes-section {
    padding: 60px 15px;
  }

  .episodes-section .heading-14 {
    margin-bottom: 30px;
  }

  .latest-episodes {
    gap: 30px;
  }
}
