/* ============================================================
   Hero Banner — Single image size: 1600×900px (16:9)
   height: clamp(260px, 55vw, 600px) scales with screen width
   ============================================================ */

/* Wrapper */
.hero-banner-section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  line-height: 0;
}

/* Swiper container */
.hero-banner-swiper {
  width: 100%;
  position: relative;
}

/* Slide */
.hero-banner-swiper .swiper-slide {
  width: 100%;
  height: clamp(260px, 55vw, 600px); /* 260px min on tiny mobile → 600px max on desktop */
  overflow: hidden;
}

/* Image — covers the slide at every height, object-position keeps center visible */
.hero-banner-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* Navigation arrows */
.hero-banner-swiper .swiper-button-next,
.hero-banner-swiper .swiper-button-prev {
  color: #ffffff;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.hero-banner-swiper .swiper-button-next:hover,
.hero-banner-swiper .swiper-button-prev:hover {
  opacity: 1;
}

/* Pagination dots — overlaid on the image at the bottom */
.hero-banner-swiper .swiper-pagination {
  bottom: 12px;
}

.hero-banner-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
}

.hero-banner-swiper .swiper-pagination-bullet-active {
  background: #ffffff;
}

/* Hide arrows on small mobile — dots are enough */
@media (max-width: 480px) {
  .hero-banner-swiper .swiper-button-next,
  .hero-banner-swiper .swiper-button-prev {
    display: none;
  }
}
