/* ==========================================================================
   Watch Now Video Template Styles
   ========================================================================== */

/* Base Typography
   ========================================================================== */
.template-watch-now-video h1,
.template-watch-now-video h2 {
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: 700;
  color: #001949;
}

/* Template Background
   ========================================================================== */
.template-watch-now-video {
  background-image: url("/wp-content/uploads/Blue-background-gradient@2x-scaled-1.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

/* Main Container
   ========================================================================== */
.watch-now-video-container {
  max-width: 857px;
  width: 100%;
  margin: 0 auto;
}

/* Sub Header
   ========================================================================== */
.watch-now-video .sub-header {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: #eff4fa;
  padding: 10px 37px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.sub-header span {
  font-weight: 700;
  color: #ed5b3e;
}

/* Video Introduction Section
   ========================================================================== */
.video-intro .video-title {
  text-align: center;
  padding: 30px 0 25px;
  margin: 0;
}

.video-intro-text {
  text-align: center;
  font-weight: 400;
  max-width: 760px;
  margin: 0 auto;
}

.read-transcript-link {
  color: #ff0000;
  font-size: 0.75rem;
  margin: 40px 0;
  display: block;
  text-align: center;
  font-weight: 700;
}

/* Video Embed Section
   ========================================================================== */
#video-embed {
  text-align: center;
}

#video-embed iframe {
  max-width: 857px;
  width: 100%;
  height: 414px;
  border: none;
  box-shadow: 0px 10px 25px #0000000D;
  aspect-ratio: 16 / 9;
}

/* Transcript Section
   ========================================================================== */
#transcript {
  margin-top: 70px;
}

.transcript-body {
  font-weight: 400;
}

/* Speaker Section
   ========================================================================== */
.speaker-container {
  max-width: 988px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 47px;
}

.speaker-heading {
  max-width: 857px;
  margin: 0 auto 45px;
}

.speaker-list {
  display: flex;
  justify-content: space-between;
}

/* Individual Speaker
   ========================================================================== */
.speaker-list .speaker .speaker-photo {
  width: 224px;
  height: 224px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.speaker-list .speaker .speaker-photo img {
  width: 100%;
  object-fit: cover;
}

.speaker-info {
  text-align: center;
}

.speaker-info .speaker-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #7f7f7f;
  margin: 20px 0 10px;
}

.speaker-info .speaker-title {
  font-size: 0.625rem;
  color: #001949;
  font-family: Arial, sans-serif;
}

/* Social Media Icons
   ========================================================================== */
.speaker-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  line-height: 1;
}

.speaker-social .fa {
  width: 14px;
}

/* Responsive Design
   ========================================================================== */

@media screen and (min-width: 897px) {
  .watch-now-video-container {
    padding: 132px 0 70px
  }
}

@media screen and (max-width: 1280px) {
  .watch-now-video-container {
    padding-top: 50px;
    margin-top: 0;
  }
  
  .speaker-container {
    padding-bottom: 82px;
  }
}

@media screen and (max-width: 897px) {
  .watch-now-video-container {
    padding: 40px 20px;
  }
  
  #transcript {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .speaker-list {
    flex-direction: column;
    gap: 50px;
    justify-content: center;
  }
}

@media screen and (max-width: 500px) {
  #video-embed iframe {
    height: auto;
	
  }
}