body.podcast-page .section-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 200px 0 20px;
}
body.podcast-page .section-hero .overlay-text img {
  width: 850px;
}
body.podcast-page .section-hero .hero-content-wrap {
  position: relative;
  transform: unset;
}
body.podcast-page .section-hero .hero-content-wrap .hero-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}
body.podcast-page .section-hero .hero-content-wrap .desc {
  color: #fff;
  opacity: 0.7;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin-top: 50px;
}
body.podcast-page .section-podcasts {
  padding: 60px 0 200px;
}
body.podcast-page .section-podcasts .section-description {
  text-align: center;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 80px;
  line-height: 1.6;
}
body.podcast-page .section-podcasts .podcast-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 20px;
  justify-content: flex-start;
}
body.podcast-page .section-podcasts .podcast-item {
  flex: 0 1 calc(33.333% - 14px);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  background: #191919;
  border-top-left-radius: 125px;
  padding: 30px;
  overflow: hidden;
}
@media (max-width: 992px) {
  body.podcast-page .section-podcasts .podcast-item {
    flex: 0 1 calc(50% - 30px);
  }
}
@media (max-width: 660px) {
  body.podcast-page .section-podcasts .podcast-item {
    flex: 0 1 100%;
  }
}
body.podcast-page .section-podcasts .podcast-image {
  width: 100%;
  aspect-ratio: 15/13;
  overflow: hidden;
}
body.podcast-page .section-podcasts .podcast-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.25);
}
body.podcast-page .section-podcasts .podcast-title {
  font-size: 20px;
  font-weight: 900;
  margin: 20px 0;
  color: #fff;
}
body.podcast-page .section-podcasts .podcast-description {
  font-size: 16px;
  color: #fff;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 25px;
}
body.podcast-page .section-podcasts .podcast-player {
  margin-bottom: 25px;
}
body.podcast-page .section-podcasts .podcast-player iframe {
  border-radius: 8px;
}
body.podcast-page .section-podcasts .primary-btn {
  background-color: #f9d248;
  color: #333;
  padding: 15px;
  text-align: center;
  font-weight: 400;
  border-radius: 10px;
  border-bottom-left-radius: 0;
}
body.podcast-page .section-podcasts .primary-btn:hover::before {
  transform: translateY(150%) rotate(10deg);
}
body.podcast-page .section-podcasts .primary-btn::after {
  background-color: #5e60b9;
}/*# sourceMappingURL=styles-podcast.css.map */