.hero-slider {
  width: 100%;
  background: #111;
}

.hero-slider .desktop {
  display: block;
}

.hero-slider .mobile {
  display: none;
}

.hero-slider .swiper {
  width: 100%;
  height: 80vh;
  min-height: 480px;
}

.hero-slider .slide {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  overflow: hidden;
}

.hero-slider .slide-mobile {
  height: 71vh;
  min-height: 520px;
}

.hero-slider .slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slider .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background: rgba(0, 0, 0, 0.2);
}

.hero-slider .content {
  width: 100%;
  padding: 0 0 58px 20%;
  color: var(--color-white);
}

.hero-slider .content-mobile {
  padding: 0 6% 16%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-slider .title {
  color: var(--color-white);
  font-size: 64px;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
  margin: 0 0 10px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-slider .title-mobile {
  text-align: center;
  font-size: 2rem;
}

.hero-slider .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border: 1px solid var(--color-white);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 19.2px;
  font-weight: 600;
  background: transparent;
  transition: background 0.2s ease;
}

.hero-slider .cta:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-slider .swiper-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  padding-right: 48px;
  bottom: 36px !important;
  left: 0;
  right: 0;
  width: 100%;
}

.hero-slider .swiper-pagination-bullet {
  width: 11px !important;
  height: 11px !important;
  margin: 0 6px !important;
  background: #ffffff;
  opacity: 1;
  border: 0;
  border-radius: 50%;
  vertical-align: middle;
  flex-shrink: 0;
  transition: background-color 0.25s ease;
}

.hero-slider .swiper-pagination-bullet-active {
  width: 11px !important;
  height: 11px !important;
  background: var(--color-primary);
  border: 0;
  transform: none;
}

@media (max-width: 1024px) {
  .hero-slider .content {
    padding: 0 0 40px 8%;
  }

  .hero-slider .title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .hero-slider .desktop {
    display: none;
  }

  .hero-slider .mobile {
    display: block;
  }

  .hero-slider .swiper {
    height: 71vh;
    min-height: 520px;
  }

  .hero-slider .swiper-pagination {
    justify-content: center;
    padding-right: 0;
  }

  .hero-slider .cta {
    font-size: 0.9rem;
  }
}
