.podcast-episode {
  background: #EBF2F4;
  padding: 80px 0;
}

.episode-wrap {
  gap: 50px;
}

.episode-wrap__video {
  flex: 1;
}
.episode-wrap__video .video-opt {
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.episode-wrap__video .video-opt iframe {
    border: none;
    height: 100%;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
}

.episode-wrap__content {
  flex: 1;
}
.episode-wrap__content h2 {
  font-size: 3.6rem;
}

.podcast-episode .podcast-embeds {
  padding-top: 20px;
}
.podcast-episode .podcast-embeds img {
  height: 50px;
  width: auto;
}

.podcast-episode .podcast-embeds.under-vid {
  display: none;
}

@media (max-width: 767px) {
  
  .podcast-episode {
    padding: 60px 0;
  }
  .episode-wrap {
    flex-direction: column-reverse;
    gap: 30px;
  }  
  .podcast-episode .podcast-embeds.under-text {
    display: none;
  }
  .podcast-episode .podcast-embeds.under-vid {
    display: block;
  }
  
}

/*-----------*/

.podcast-grid-wrap {
  padding: 80px 0;
}
.podcast-grid-wrap .grid-title {
  text-align: center;
  margin-bottom: 40px;
}

.podcast-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 60px;
}

.podcast-grid .post-hidden {
  display: none;
}

.pod-post-card .pod-post-card__image {
    aspect-ratio: 5 / 4;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.pod-post-card .pod-post-card__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.pod-post-card .pod-post-card__content {
  padding: 20px 0 0 0;
}
.pod-post-card .pod-post-card__content .post-title {
  color: #092038;
  font-size: 2.0rem;
  line-height: 1.3;
  font-weight: 700;
}

.podcast-grid-wrap .load-wrap {
  text-align: center;
}

@media (max-width: 960px) {
    .podcast-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .podcast-grid {
        grid-template-columns: 1fr;
    }