/* ══════════════════ HERO ══════════════════ */

.hero { padding-top: 20px; }
.hero .container { position: relative; }

.hero__swiper { border-radius: var(--radius-card); overflow: hidden; }

.hero__link {
  position: relative;
  display: block;
  aspect-ratio: 1200 / 308.57;
  overflow: hidden;
  background: #1a0e2b;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: absolute;
  top: 0;
  right: 50px;
  width: 480px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding-top: 62px;
  text-align: center;
  pointer-events: none;
}

.hero__eyebrow { font-size: 16px; line-height: 18.4px; color: #fff; }

.hero__heading {
  width: 372px;
  max-width: 100%;
  margin: 6px 0;
  padding-inline: 23px;
  font-size: 40px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: .4px;
  /* white → lavender gradient exactly as the board specifies */
  background: linear-gradient(90deg, #fff 46.666%, #d5b1ff 83.333%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-width: 150px;
  padding: 15px;
  border-radius: 100px;
  background: var(--pink);
  font-size: 12.8px;
  font-weight: 700;
  color: #fff;
}

.hero__sub {
  position: absolute;
  left: 50%;
  bottom: 13px;
  translate: -50% 0;
  width: max-content;
  font-size: 13.6px;
  line-height: 15.64px;
  color: #fff;
}

.hero__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink);
  transition: filter .15s;
}

.hero__nav:hover { filter: brightness(1.1); }
.hero__nav.swiper-button-disabled { opacity: .35; cursor: default; }
.hero__nav--prev { left: 20px; }
.hero__nav--next { right: 20px; }

.hero__nav::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.hero__nav--prev::before { rotate: -135deg; margin-left: 3px; }
.hero__nav--next::before { rotate: 45deg;   margin-right: 3px; }
