#video-carousel .video-carousel-arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  margin: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
#video-carousel .video-carousel-arrow-icon svg {
  display: block;
}
#video-carousel .video-carousel-arrow-icon:hover circle {
  fill: rgba(0,0,0,0.5);
}
/* Video Carousel Custom Styles */
#video-carousel {
  min-height: 70vh;
  background: #fff;
}
#video-carousel .position-relative {
  width: 90vw;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background: #000;
}
#video-carousel .carousel-inner,
#video-carousel .carousel-item {
  height: 100%;
}
#video-carousel .ratio {
  height: 100%;
}
#video-carousel iframe {
  border-radius: 1rem;
  object-fit: cover;
}

#video-carousel .carousel-caption {
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: none;
  color: #fff;
  z-index: 2;
  pointer-events: none;
}

#video-carousel .video-carousel-title {
  font-size: 2.00rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  letter-spacing: 0.01em;
  pointer-events: auto;
}

#video-carousel .video-carousel-link {
  font-size: 0.95rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  background: rgba(0,0,0,0.35);
  padding: 0.35em 1em;
  border-radius: 2em;
  margin-top: 0.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.2s, color 0.2s;
  pointer-events: auto;
}
#video-carousel .video-carousel-link::after {
  content: '\003E';
  font-size: 1.2em;
  margin-left: 0.5em;
  vertical-align: middle;
}
#video-carousel .video-carousel-link:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}
#video-carousel .carousel-control-prev.video-carousel-arrow {
  left: 16px;
  right: auto;
  position: absolute;
}
#video-carousel .carousel-control-next.video-carousel-arrow {
  right: 16px;
  left: auto;
  position: absolute;
}
#video-carousel .carousel-control-prev-icon,
#video-carousel .carousel-control-next-icon {
  background-image: none;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}
