/* ====================== Component: Hero Slider ====================== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}
.hero__slides,
.hero__overlay { position: absolute; inset: 0; }

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s var(--ease);
}
.hero__slide.is-active { opacity: 1; }

.hero__overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__card {
  position: relative;
  background: rgba(var(--color-ink-rgb), 0.9);
  border-left: 3px solid var(--color-yellow);
  padding: 36px 28px;
  max-width: 701px;
}

.hero__content { display: none; }
.hero__content.is-active { display: block; animation: heroFade 0.7s var(--ease) both; }

@keyframes heroFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.hero__title {
  color: var(--color-white);
  font-size: clamp(32px, 6vw, 50px);
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-top: 16px;
}
.hero__sub {
  margin-top: 18px;
  font-size: 18px;
  line-height: 29px;
  color: rgba(255, 255, 255, 0.8);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.35s var(--ease), background-color 0.35s var(--ease);
}
.hero__dot.is-active { width: 32px; background: var(--color-yellow); }

@media (min-width: 768px) {
  .hero { min-height: 660px; }
  .hero__card { padding: 48px 50px; }
}
@media (min-width: 1024px) {
  .hero { min-height: 760px; }
}
