/* Featured videos showcase (homepage) */

.video-showcase-section {
  position: relative;
  padding: 4rem 0 4.5rem;
  background: linear-gradient(165deg, #0a1628 0%, #122654 45%, #1a2f6b 100%);
  overflow: hidden;
}

.video-showcase-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.video-showcase-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.video-showcase-section .container {
  position: relative;
  z-index: 1;
}

.video-showcase-section__header {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.video-showcase-section__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fca5a5;
  margin-bottom: 0.65rem;
}

.video-showcase-section__title {
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
}

.video-showcase-section__subtitle {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
  margin-bottom: 0;
}

.video-showcase-carousel {
  padding-bottom: 2.5rem;
}

.video-showcase__frame {
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.video-showcase__frame iframe {
  border: 0;
}

.video-showcase-carousel .carousel-indicators {
  position: relative;
  margin: 1.75rem 0 0;
  bottom: auto;
  background: transparent;
  gap: 0.35rem;
}

.video-showcase-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background-color: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.video-showcase-carousel .carousel-indicators .active {
  width: 28px;
  background: linear-gradient(90deg, #e63946, #3b82f6);
}

.video-showcase-carousel .carousel-control-prev,
.video-showcase-carousel .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 42%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  opacity: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.video-showcase-carousel .carousel-control-prev:hover,
.video-showcase-carousel .carousel-control-next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.video-showcase-carousel .carousel-control-prev-icon,
.video-showcase-carousel .carousel-control-next-icon {
  filter: invert(18%) sepia(30%) saturate(2000%) hue-rotate(196deg);
  width: 1.25rem;
  height: 1.25rem;
}

.video-showcase-carousel .carousel-control-prev {
  left: -12px;
}

.video-showcase-carousel .carousel-control-next {
  right: -12px;
}

@media (max-width: 991px) {
  .video-showcase-carousel .carousel-control-prev {
    left: 4px;
  }

  .video-showcase-carousel .carousel-control-next {
    right: 4px;
  }
}

@media (max-width: 767px) {
  .video-showcase-section {
    padding: 2.75rem 0 3rem;
  }

  .video-showcase-section__header {
    margin-bottom: 2rem;
  }

  .video-showcase-carousel .carousel-control-prev,
  .video-showcase-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}
