.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.42) 20%, rgba(255, 255, 255, 0.2) 60%, rgba(255, 255, 255, 0.08));
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(12, 21, 41, 0.45);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.hero-arrow:hover {
  background: rgba(12, 21, 41, 0.75);
}

.hero-arrow-prev {
  left: 1rem;
}

.hero-arrow-next {
  right: 1rem;
}

@media (max-width: 560px) {
  .hero {
    min-height: 78vh;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .hero-arrow-prev {
    left: 0.5rem;
  }

  .hero-arrow-next {
    right: 0.5rem;
  }
}
