.offers-app-page .landing-hero-slider {
  position: relative;
  min-height: 300px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--ui-radius-panel);
  overflow: hidden;
  background: #075ed0;
  color: #fff;
  box-shadow: var(--ui-shadow-card);
  isolation: isolate;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.landing-hero-slider .hero-slider-stage {
  position: relative;
  min-height: 300px;
  cursor: grab;
  touch-action: pan-y;
}

.landing-hero-slider.is-touching .hero-slider-stage {
  cursor: grabbing;
}

.landing-hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.62fr);
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  z-index: 0;
}

.landing-hero-slider .hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 1;
}

.landing-hero-slider .hero-slide.is-image-only {
  padding: 0;
}

.landing-hero-slider .hero-slide-media,
.landing-hero-slider .hero-slide-media img,
.landing-hero-slider .hero-slide-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-hero-slider .hero-slide-media {
  z-index: 0;
  display: block;
  background: #075ed0;
  pointer-events: none;
}

.landing-hero-slider .hero-slide-media img {
  display: block;
  object-fit: cover;
}

.landing-hero-slider .hero-slide-shade {
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4, 18, 43, 0.78) 0%, rgba(4, 32, 76, 0.58) 42%, rgba(4, 32, 76, 0.12) 100%);
}

.hero-slide-image-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.landing-hero-slider .hero-slide-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.offers-app-page .landing-hero-slider .hero-slide-copy h2 {
  max-width: 14ch;
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 4.3vw, 2.9rem);
  line-height: 1.04;
  font-weight: 900;
}

.offers-app-page .landing-hero-slider .hero-slide-copy p {
  max-width: 34ch;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  font-weight: 600;
}

.hero-slider-cta {
  width: fit-content;
  max-width: 100%;
  min-height: 46px;
  display: inline-grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 0 9px 0 18px;
  border-radius: var(--ui-radius-control);
  background: #fff;
  color: #0a3472;
  font-size: 0.98rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(2, 20, 54, 0.16);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hero-slider-cta svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  background: #075ed0;
  color: #fff;
}

.landing-hero-slider .hero-discount-art {
  display: none;
}

.hero-slider-controls {
    position: absolute;
    inset: 0;
    z-index: 8;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    pointer-events: none;
}

.hero-slider-arrow,
.hero-slider-dot {
  border: 0;
  color: #fff;
  pointer-events: auto;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(4, 22, 60, 0.42);
  box-shadow: 0 14px 28px rgba(2, 14, 42, 0.22);
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-slider-arrow:hover,
.hero-slider-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-50%) scale(1.04);
}

.hero-slider-arrow[data-slider-prev] {
  left: 18px;
}

.hero-slider-arrow[data-slider-next] {
  right: 18px;
}

.hero-slider-arrow svg {
  width: 18px;
  height: 18px;
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(3, 28, 78, 0.26);
  pointer-events: auto;
  transform: translateX(-50%);
}

.hero-slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-slider-dot.is-active {
  width: 22px;
  background: #fff;
}

.landing-hero-slider.is-single .hero-slider-controls {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero-slider .hero-slide {
    transition: none;
  }
}

@media (max-width: 760px) {
  .offers-app-page .landing-hero-slider {
    min-height: 260px;
    border-radius: var(--ui-radius-panel);
  }

  .landing-hero-slider .hero-slider-stage,
  .landing-hero-slider .hero-slide {
    min-height: 260px;
  }

  .landing-hero-slider .hero-slide {
    grid-template-columns: 1fr;
    align-items: end;
    padding: 20px 14px 66px;
  }

  .landing-hero-slider .hero-slide-shade {
    background: linear-gradient(180deg, rgba(3, 20, 52, 0.14) 0%, rgba(3, 20, 52, 0.56) 46%, rgba(3, 12, 31, 0.86) 100%);
  }

  .offers-app-page .landing-hero-slider .hero-slide-copy h2 {
    max-width: 14ch;
    font-size: 1.55rem;
    line-height: 1.04;
  }

  .offers-app-page .landing-hero-slider .hero-slide-copy p {
    max-width: 29ch;
    margin-top: 7px;
    font-size: 0.9rem;
    line-height: 1.28;
  }

  .hero-slider-cta {
    min-height: 40px;
    margin-top: 12px;
    grid-template-columns: minmax(0, 1fr) 30px;
    padding-left: 13px;
    border-radius: var(--ui-radius-control);
    font-size: 0.8rem;
  }

  .hero-slider-cta svg {
    width: 30px;
    height: 30px;
    padding: 7px;
  }

  .hero-slider-controls {
    left: 14px;
    right: auto;
    bottom: 14px;
    inset: auto auto 14px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    pointer-events: auto;
  }

  .hero-slider-arrow {
    position: static;
    width: 30px;
    height: 30px;
    transform: none;
  }

  .hero-slider-arrow:hover,
  .hero-slider-arrow:focus-visible {
    transform: none;
  }

  .hero-slider-dots {
    position: static;
    padding: 0;
    background: transparent;
    transform: none;
  }
}

@media (max-width: 390px) {
  .offers-app-page .landing-hero-slider {
    min-height: 248px;
  }

  .landing-hero-slider .hero-slider-stage,
  .landing-hero-slider .hero-slide {
    min-height: 248px;
  }

  .landing-hero-slider .hero-slide {
    padding: 18px 12px 64px;
  }

  .offers-app-page .landing-hero-slider .hero-slide-copy h2 {
    font-size: 1.42rem;
  }

  .offers-app-page .landing-hero-slider .hero-slide-copy p {
    font-size: 0.84rem;
  }
}
