/* Spotlight Section */
.spotlight-section {
  background: #0F0F0F;
  padding: 80px 0 60px 0;
  text-align: center;
  overflow: hidden;
}

.spotlight-header {
  margin-bottom: 40px;
}

.spotlight-title {
  font-family: 'Forma DJR Display Medium', 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: 72px;
  line-height: 100%;
  letter-spacing: 0;
  color: #0044E9;
  margin-bottom: 18px;
}

.spotlight-desc {
  font-family: 'Forma DJR Micro Regular', 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0;
  color: #F6F6F6;
  margin-bottom: 0;
}

.spotlight-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 32px;
  height: 415px;
}

.spotlightSlider .bx-wrapper {
  background: none;
  border: none;
  box-shadow: none;
}
.spotlight-images {
  display: flex;
  gap: 32px;
  width: max-content;
  transition: transform 0.5s ease;
}

.spotlight-img {
  width: 194px;
  height: 363px;
  border-radius: 14px;
  object-fit: cover;
  background: #222;
  box-shadow: 0 4px 24px #0008;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: all 0.4s ease;
  opacity: 0.5;
  transform: scale(0.95);
}

.spotlight-img.main {
  opacity: 1;
  transform: scale(1.1);
  border: 2px solid #0044E9;
  box-shadow: 0 8px 32px #0044E955;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .spotlight-section {
    padding: 40px 0 40px 0;
  }
  .spotlight-title {
    font-size: 48px;
  }

  .spotlight-desc {
    font-size: 16px;
    line-height: 24px;
  }

  .spotlight-img {
    width: 140px;
    height: 260px;
  }
}

@media (max-width: 1024px) {
  .spotlight-title {
    font-size: 56px;
  }

  .spotlight-desc {
    font-size: 18px;
  }

  .spotlight-carousel {
    padding-top: 24px;
  }

  .spotlight-images {
    gap: 24px;
  }

  .spotlight-img {
    width: 160px;
    height: 300px;
  }

  .spotlight-img.main {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .spotlight-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .spotlight-images {
    flex-wrap: nowrap;
    gap: 20px;
    padding: 0 16px;
    width: max-content;
  }

  .spotlight-img {
    width: 140px;
    height: 240px;
    scroll-snap-align: center;
    opacity: 0.8;
    flex-shrink: 0;
  }

  .spotlight-img.main {
    transform: scale(1.05);
    border-color: #0044E9;
  }

  .spotlight-title {
    font-size: 40px;
  }

  .spotlight-desc {
    font-size: 22px;
    line-height: 29px;
    padding: 0 25px;
  }
}

@media (max-width: 480px) {
  .spotlight-title {
    font-size: 50px;
  }

  .spotlight-img {
    width: 170px;
    height: 300px;
  }

  .spotlight-img.main {
    transform: scale(1.02);
  }
}
