.banner-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.banner-swiper-track {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.banner-swiper-track.dragging {
  transition: none;
}

.banner-swiper-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.banner-swiper-slide img {
  width: 100%;
  aspect-ratio: 3.8;
  object-fit: cover;
  display: block;
}

.banner-swiper-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.banner-swiper-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}

.banner-swiper-dot.active {
  width: 16px;
  border-radius: 3px;
  background: white;
}
