.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
  font-weight: 500;
}

#podcastPage .parallax-container {
  background: #f8f9fa;
  padding: 70px 0px 50px;
  position: relative;
  height: 100%;
  overflow: hidden;
}

#podcastPage .page-head {
  text-transform: none;
  color: #212529;
  text-align: center;
  padding: 15px 20px;
}

.podcast-card-img {
  width: 100%;
  height: inherit;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.paging-container {
  border-radius: 10px;
  background-color: rgba(46, 143, 206, 0.0862745098);
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.paging-container .pagingBtn {
  color: #007bff;
}
.paging-container .pagingBtn:hover {
  color: #00559B;
}
.paging-container .pagingBtn:focus {
  box-shadow: none;
}

.podcast-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  transition: all 0.3s ease;
}
.podcast-btn img {
  width: 100%;
  height: 100%;
}
.podcast-btn svg {
  width: 40px !important;
  height: 40px !important;
}
.podcast-btn:hover {
  text-decoration: none;
  filter: brightness(75%);
}

.podcast-logo-section {
  position: relative;
  background-color: #00559B;
  border-radius: 10px;
  padding: 30px;
  z-index: 2;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.link-section {
  position: relative;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 30px 30px 30px;
  transform: translateY(-20px);
  z-index: 1;
  max-width: 600px;
  width: 100%;
}
.link-section .podcast-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.podcast-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 16px;
}
.podcast-container .card {
  border-radius: 10px;
}
.podcast-container .podcast-box {
  position: relative;
  width: 100%;
  height: auto;
}
.podcast-container .podcast-box img {
  -o-object-fit: cover;
     object-fit: cover;
}
.podcast-container .podcast-box .podcast-card-img {
  width: 100%;
  height: inherit;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.podcast-container .podcast-box:hover .image-overlay {
  opacity: 0.95;
}
.podcast-container .podcast-icons {
  transition: 0.3s ease;
}
.podcast-container .podcast-icons:hover {
  filter: brightness(75%);
}

.icon-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 10px;
}

.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  /* truncate to 4 lines */
  -webkit-line-clamp: 4;
}

.podcast-graphic {
  position: absolute;
  right: 0px;
  bottom: 0px;
  transform: translateY(8%) translateX(40%);
}
.podcast-graphic img {
  -webkit-user-drag: none; /* For Chrome/Safari */
  -moz-user-drag: none; /* For Firefox */
  user-drag: none;
}

@media (max-width: 906px) {
  .podcast-description-container {
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .podcast-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media (min-width: 800px) {
  .podcast-graphic {
    transform: translateY(8%) translateX(30%);
  }
}
@media (min-width: 992px) {
  #podcastPage .parallax-container {
    padding: 120px 0px 50px;
  }
  #podcastPage .page-head {
    text-align: left;
  }
  .podcast-graphic {
    transform: translateY(35%) translateX(25%);
  }
}/*# sourceMappingURL=podcasts.css.map */