.art-hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.art-hero-slider__slides {
  position: relative;
  min-height: var(--art-hero-min-height, 60vh);
}

.art-hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.art-hero-slider__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.art-hero-slider__media {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.art-hero-slider__meta {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 14px 18px;
  max-width: 70%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.art-hero-slider__meta h3 {
  margin: 0 0 4px;
  font-size: 24px;
  color: #212934;
}

.art-hero-slider__meta em {
  font-size: 14px;
  color: #4a4e57;
}

.art-hero-slider__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.art-hero-slider__controls button {
  border: 1px solid #e2e2e2;
  background: #ffffff;
  color: #212934;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.art-hero-slider__controls button:focus-visible {
  outline: 2px solid #818b42;
  outline-offset: 2px;
}

.art-hero-slider__icon {
  font-size: 16px;
  line-height: 1;
  color: var(--awb-color5);
}

.art-hero-slider__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 780px) {
  .art-hero-slider__slides {
    min-height: var(--art-hero-min-height-small, 50vh);
  }

  .art-hero-slider__meta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

@media (max-width: 1024px) and (min-width: 781px) {
  .art-hero-slider__slides {
    min-height: var(--art-hero-min-height-medium, 55vh);
  }
}
