.videos-list .portfolio-section {
  padding: 0px !important;
}
.videos-list .portfolio-section .portfolio-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}
.videos-list .portfolio-section .portfolio-wrapper .video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .videos-list .portfolio-section .portfolio-wrapper .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .videos-list .portfolio-section .portfolio-wrapper .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.videos-list .portfolio-section .portfolio-wrapper .video-grid .video-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.videos-list .portfolio-section .portfolio-wrapper .video-grid .video-card .video-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background-color: #f3f4f6;
}
.videos-list .portfolio-section .portfolio-wrapper .video-grid .video-card .video-thumbnail img.big {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.videos-list .portfolio-section .portfolio-wrapper .video-grid .video-card .video-thumbnail .layer {
  background: black;
  opacity: 0.2;
  z-index: 3;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0.3;
}
.videos-list .portfolio-section .portfolio-wrapper .video-grid .video-card .video-thumbnail .playIcon {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  display: block;
  z-index: 4;
  opacity: 0.7;
}
.videos-list .portfolio-section .portfolio-wrapper .video-grid .video-card .video-thumbnail::after {
  content: "";
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 60px;
  height: 64px;
  background: linear-gradient(270deg, #008599 0, #6ab335 100%) no-repeat padding-box;
  z-index: 1;
}
.videos-list .portfolio-section .portfolio-wrapper .video-grid .video-card .video-thumbnail .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.videos-list .portfolio-section .portfolio-wrapper .video-grid .video-card .video-thumbnail .hover-overlay .play-icon {
  width: 50px;
  height: 50px;
  background-image: url("/images/icons/play-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.videos-list .portfolio-section .portfolio-wrapper .video-grid .video-card .video-thumbnail:hover .hover-overlay {
  opacity: 1;
}
.videos-list .portfolio-section .portfolio-wrapper .video-grid .video-card .video-content {
  margin-top: 10px;
}
.videos-list .portfolio-section .portfolio-wrapper .video-grid .video-card .video-content .video-date {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 22px;
  color: #008599;
  letter-spacing: 0.7px;
}
.videos-list .portfolio-section .portfolio-wrapper .video-grid .video-card .video-content .video-title {
  margin-bottom: 30px;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 25px;
  text-transform: uppercase;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.video-modal.active {
  display: flex;
}
.video-modal .video-modal-content {
  background: #000;
  padding: 0;
  position: relative;
  width: 90%;
  max-width: 800px;
}
.video-modal .video-modal-content .video-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #fff;
  color: #000;
  border: none;
  font-size: 28px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
.video-modal .video-modal-content .video-iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-modal .video-modal-content .video-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.podcast-detail {
  padding: 40px 0px;
}
.podcast-detail .container {
  max-width: 1100px;
  margin: 0 auto;
}
.podcast-detail .podcast-header {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}
.podcast-detail .podcast-header .podcast-image {
  flex: 0 0 340px;
  aspect-ratio: 4/3;
  position: relative;
}
.podcast-detail .podcast-header .podcast-image img {
  width: 100%;
  height: auto;
}
.podcast-detail .podcast-header .podcast-content {
  flex: 1;
}
.podcast-detail .podcast-header .podcast-content .podcast-date {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.podcast-detail .podcast-header .podcast-content .podcast-date .circle-number {
  background: #ff7700;
  color: #fff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  margin-right: 10px;
}
.podcast-detail .podcast-header .podcast-content .podcast-date .date-text {
  text-transform: uppercase;
  font-size: 14px;
  color: #666;
}
.podcast-detail .podcast-header .podcast-content .podcast-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #222;
  text-transform: uppercase;
}
.podcast-detail .podcast-header .podcast-content .podcast-description {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
.podcast-detail .podcast-header .podcast-content .podcast-description p {
  margin-bottom: 10px;
}
.podcast-detail .podcast-header .podcast-content .podcast-description strong, .podcast-detail .podcast-header .podcast-content .podcast-description b, .podcast-detail .podcast-header .podcast-content .podcast-description h2, .podcast-detail .podcast-header .podcast-content .podcast-description h3, .podcast-detail .podcast-header .podcast-content .podcast-description h4, .podcast-detail .podcast-header .podcast-content .podcast-description h5 {
  font-weight: 700;
  color: #008599;
}
.podcast-detail .podcast-header .podcast-content .podcast-description a {
  color: #008599;
  text-decoration: underline;
}
.podcast-detail .podcast-header .podcast-content .listen-now {
  margin-top: 25px;
}
.podcast-detail .podcast-header .podcast-content .listen-now p {
  font-weight: bold;
  margin-bottom: 10px;
}
.podcast-detail .podcast-header .podcast-content .listen-now .platform-icons {
  display: flex;
  gap: 16px;
}
.podcast-detail .podcast-header .podcast-content .listen-now .platform-icons .platform-icon {
  font-size: 24px;
  color: #fff;
  background: linear-gradient(270deg, #008599 0, #6ab335 100%) no-repeat padding-box;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: relative;
}
.podcast-detail .podcast-header .podcast-content .listen-now .platform-icons .platform-icon i, .podcast-detail .podcast-header .podcast-content .listen-now .platform-icons .platform-icon svg {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  display: block;
  max-width: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.podcast-detail .podcast-header .podcast-content .listen-now .platform-icons .platform-icon:hover {
  color: #d2d2d2;
}
.podcast-detail .social-media-icons {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}
.podcast-detail .social-media-icons.desktop-only {
  display: none;
}
@media (min-width: 768px) {
  .podcast-detail .social-media-icons.desktop-only {
    display: flex;
  }
}
.podcast-detail .social-media-icons.mobile-only {
  display: flex;
}
@media (min-width: 768px) {
  .podcast-detail .social-media-icons.mobile-only {
    display: none;
  }
}
.podcast-detail .social-media-icons .smIcon {
  font-size: 16px;
  color: #000;
}
.podcast-detail .social-media-icons .smIcon img {
  width: 20px;
  height: 20px;
}
.podcast-detail .social-media-icons .smIcon:hover {
  color: #008599;
}

.podcastPage .date-text {
  color: #008599 !important;
}
.podcastPage .inner-container {
  padding: 0px !important;
  max-width: 1360px;
  width: 100% !important;
}
@media (max-width: 1400px) {
  .podcastPage .inner-container {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .podcastPage .inner-container {
    max-width: 950px;
  }
}
@media (max-width: 992px) {
  .podcastPage .inner-container {
    max-width: 740px;
  }
}
@media (max-width: 768px) {
  .podcastPage .inner-container {
    max-width: 100%;
    padding: 0px 28px !important;
  }
}
.podcastPage .single-card-inner-container {
  margin-bottom: 2rem;
}
.podcastPage .image-container {
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 13px;
  position: relative;
}
.podcastPage .image-container img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  background: #fff;
  border-radius-bottom: 0px;
}
.podcastPage .podcast-date {
  margin-top: 8px;
  align-items: center;
  display: inline-flex;
}
.podcastPage .podcast-date img {
  margin-right: 4px;
}
.podcastPage .section-three .heading-container {
  margin-top: 30px;
}
.podcastPage .section-three .news-listing {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .podcastPage .section-three .news-listing {
    display: inline-block !important;
  }
}
.podcastPage .section-three .news-listing .image-container {
  width: 100%;
  aspect-ratio: 4/3;
  margin-bottom: 13px;
  position: relative;
  height: auto !important;
}
.podcastPage .section-three .news-listing .news-title {
  margin-bottom: 4px !important;
}
.podcastPage .section-three .single-card {
  width: 32% !important;
  display: inline;
}
@media (max-width: 768px) {
  .podcastPage .section-three .single-card {
    width: 45% !important;
  }
}
@media (max-width: 575px) {
  .podcastPage .section-three .single-card {
    width: 100% !important;
  }
}
.podcastPage .section-three .single-card .image-container {
  max-width: 100% !important;
}

.template-single-news .single-card .image-container {
  aspect-ratio: 4/3;
  height: auto !important;
}

/*# sourceMappingURL=style.css.map */
