.hero-slider {
  position: relative;
  overflow: hidden;
}

.hero-slider-inner {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  z-index: 0;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  width: 22%;
  height: 100%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(14px) brightness(0.7);
  transform: scale(1.1);
  opacity: 0.85;
}

.hero-bg::before { left: 0; }
.hero-bg::after  { right: 0; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;      
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
}

.hero-content {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #ffffff;
}


.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 3;          
  pointer-events: auto;
}

.hero-arrow.prev { left: 24px; }
.hero-arrow.next { right: 24px; }

.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
  z-index: 3;         
}

@media (max-width: 768px) {

  .hero-slider-inner,
  .hero-content-wrap {
    min-height: 480px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-arrow {
    top: auto !important;
    bottom: 70px;
    transform: none !important;
  }

  .hero-arrow.prev {
    left: 20px;
  }

  .hero-arrow.next {
    right: 20px;
  }

  .hero-dots {
    bottom: 20px;
  }
}


.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-actions a {
  padding: 10px 26px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.hero-actions a:first-child {
  background: var(--yellow);
  color: #000;
}

.hero-actions a:nth-child(2) {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.hero-actions a:first-child:hover {
  background: #ffdf3b;
}

.hero-actions a:nth-child(2):hover {
  background: #ffffff;
  color: #000;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
}

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 18px;
  background: var(--yellow);
}

@media (max-width: 768px) {
  .hero-slider-inner,
  .hero-content-wrap {
    min-height: 480px;
  }

  .hero-content h1 {
    font-size: 30px;
  }
}
