.hero-art,
.hero-scene,
.hero-scene .hero-background {
  border-radius: 0 !important;
}

.hero-scene .hero-background {
  opacity: 0;
  transform: translateX(7%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .35) 9%, #000 22%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .35) 9%, #000 22%);
  transition: opacity .8s ease, transform .8s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}

.hero-scene .hero-background.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateX(0);
}

.hero-scene .hero-background.is-leaving {
  z-index: 1;
  opacity: 0;
  transform: translateX(-7%);
}

.hero-slider-dots {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 18px;
  display: flex;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(3, 15, 32, .64);
  backdrop-filter: blur(8px);
}

.hero-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.hero-slider-dots button.is-active {
  width: 25px;
  border-radius: 999px;
  background: #ff6500;
}

@media (prefers-reduced-motion: reduce) {
  .hero-scene .hero-background { transition: none; }
}

@media (max-width: 560px) {
  .hero-scene .hero-background {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .6) 6%, #000 15%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .6) 6%, #000 15%);
  }
  .hero-slider-dots { right: 14px; bottom: 14px; }
}
