.hero {
  width: 100%;
  max-width: var(--hero-width);
  min-height: 103px;
  position: relative;
  overflow: hidden;
  margin: 18px auto 0;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  width: var(--hero-active-width);
  height: auto;
}

.hero__main-img {
  width: var(--hero-active-width);
  height: var(--hero-active-height);
  aspect-ratio: 1280 / 350;
  display: block;
  border-radius: 36px;
  object-fit: cover;
}

.hero__pagination.swiper-pagination {
  position: absolute;
  left: 70px;
  width: var(--hero-active-width);
  bottom: 20px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.hero__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.60);
  border-radius: 9999px;
  opacity: 1;
  transition: width 0.3s ease, background 0.3s ease;
}

.hero__pagination .swiper-pagination-bullet-active {
  width: 36px;
  height: 10px;
  background: var(--color-primary-500);
  border-radius: 5px;
}

@media (max-width: 768px) {
  .hero {
    max-width: 100%;
    height: auto;
    padding: 0;
    box-sizing: border-box;
    margin-top: 0;
  }

  .hero-swiper {
    height: auto;
  }

  .hero-swiper .swiper-slide {
    width: 100%;
    height: auto;
  }

  .hero__main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 375 / 103;
    border-radius: 0;
  }

  .hero__pagination.swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    top: auto;
    bottom: 14px;
    justify-content: flex-end;
    gap: 6px;
  }

  .hero__pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .hero__pagination .swiper-pagination-bullet-active {
    background: var(--surface-input);
    width: 18px;
  }
}
