.mobile-hero-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #fff;
  border-bottom: 4px solid #ff9900;
  touch-action: pan-y;
}
.mobile-hero-slider__track {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  min-height: 0;
}
.mobile-hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 520ms ease, visibility 520ms ease;
  z-index: 0;
}
.mobile-hero-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.mobile-hero-slider__link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  line-height: 0;
}
.mobile-hero-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.mobile-hero-slider__arrow {
  display: none !important;
}