.home-banner > .swiper {
  aspect-ratio: 2;
  width: 100%;
  min-height: 720px;
}

.home-banner-bg {
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.home-banner-bg > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.home-banner-bg > div {
  background: linear-gradient(#0000 80%, #0003 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.home-banner-content {
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.home-banner-content h1 {
  margin-bottom: 24px;
}

.home-banner-content h4 {
  white-space: pre-line;
  color: var(--color-gray-3);
}

.home-banner-swiper-change-page {
  z-index: 1;
  position: absolute;
  top: auto;
  bottom: 120px;
  left: 0;
  right: 0;
}

.home-banner-swiper-change-page .container {
  align-items: center;
  gap: 12px;
  display: flex;
}

.home-banner-swiper-prev, .home-banner-swiper-next {
  align-items: center;
  gap: 4px;
  display: flex;
}

:is(.home-banner-swiper-prev, .home-banner-swiper-next) > p {
  color: #fff;
  font-family: Calypso, sans-serif;
}

:is(.home-banner-swiper-prev, .home-banner-swiper-next) > svg {
  flex-shrink: 0;
  transition: transform .3s;
}

.home-banner-swiper-prev:hover > svg {
  transform: translateX(-10px);
}

.home-banner-swiper-next:hover > svg {
  transform: translateX(10px);
}

.home-banner-swiper-pagination {
  gap: 12px;
  display: flex;
  width: fit-content !important;
}

.home-banner-swiper-pagination > .bullet > svg > :first-child {
  opacity: 0;
  transition: opacity 1s;
}

.home-banner-swiper-pagination > .bullet.active > svg > :first-child {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .home-banner > .swiper {
    aspect-ratio: auto;
    height: 470px;
    min-height: auto;
  }
}

@media screen and (max-width: 575px) {
  .home-banner-content {
    top: auto;
    bottom: 100px;
    left: 0;
    right: 0;
    transform: none;
  }

  .home-banner-content h1 {
    margin-bottom: 12px;
  }

  .home-banner-swiper-change-page {
    top: auto;
    bottom: 24px;
    left: 0;
    right: 0;
  }

  .home-banner-swiper-change-page .container {
    justify-content: center;
  }
}