.hero-art {
  --hero-ratio: 16 / 10;
  aspect-ratio: var(--hero-ratio);
  min-height: 0;
  overflow: hidden;
  background: #e8eef7;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(25, 55, 90, .15);
}
.hero-art::before { display: none; }
.hero-art.is-loading .hero-slides { visibility: hidden; }
.hero-slides,
.hero-slide { position: absolute; inset: 0; margin: 0; }
.hero-slide { display: grid; place-items: center; opacity: 0; transition: opacity .8s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { display: block; width: 100%; height: 100%; object-fit: contain; }
.hero-art::after { z-index: 2; pointer-events: none; }
.hero-arrow {
  display: none;
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  border: 1px solid rgba(6, 48, 111, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .86);
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.hero-art.has-multiple .hero-arrow { display: grid; place-items: center; }
.hero-arrow.prev { left: 14px; }
.hero-arrow.next { right: 14px; }
.hero-dots { position: absolute; z-index: 3; right: 18px; bottom: 14px; display: flex; gap: 7px; }
.hero-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(6, 48, 111, .3); cursor: pointer; }
.hero-dots button.is-active { background: var(--blue); transform: scale(1.2); }
@media (prefers-reduced-motion: reduce) { .hero-slide { transition: none; } }
