section.podcasts .section-container h2 {
  color: #FB8814;
  font-size: 30px;
}
section.podcasts .section-container a.button {
  margin-top: 80px;
}
.feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}
article.episode {
  background: url("../img/fond-podcast.jpg");
  background-size: cover;
  padding: 30px;
  color: #F7F2ED;
}
article.episode h3,
article.episode p {
  color: #F7F2ED;
}
article.episode p.date {
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 1px;
}
article.episode h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  font-family: "AvenirBolder";
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 18px;
  line-height: 1.1em;
  height: 60px;
}
article.episode p.info {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  font-size: 12px;
}
article.episode span {
  color: #B3C951;
  font-size: 12px;
  font-style: italic;
  display: block;
  margin-bottom: 20px;
  margin-top: 10px;
}
article.episode a {
  color: #FB8814;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  width: 100%;
}
button.btn-play-pause {
  background-color: transparent;
  border: none;
  width: 18px;
  padding: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.progress-wrapper {
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
}
.progress-wrapper .progress-bar {
  background-color: #F7F2ED;
  height: 2px;
  border-radius: 20px;
  width: 100%;
}
.progress-wrapper .progress-fill {
  background-color: #FB8814;
  height: 100%;
  width: 0;
}
.custom-audio-player .content {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  margin: 10px 0 0 0;
}
.time-remaining {
  font-size: 10px;
  float: right;
}
section.episode .section-container .custom-audio-player {
  width: 100%;
}
section.episode .section-container .custom-audio-player button.btn-play-pause {
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
section.episode .section-container .custom-audio-player .time-remaining {
  font-size: 14px;
}
section.detail-episode .section-container {
  flex-direction: row;
  gap: 50px;
}
section.detail-episode .section-container img {
  max-width: 300px;
}
section.detail-episode .section-container p {
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .feed {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0;
  }
  section.podcasts .section-container a.button {
    margin-top: 10px;
    text-align: center;
  }
}
