.hero-slides-ui {
  margin-bottom: 1rem;
}

.hero-slides-ui.is-hidden {
  display: none;
}

.hero-slide-media {
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
  max-height: 200px;
  margin-bottom: 0.75rem;
  background: color-mix(in srgb, var(--color-bg-page) 35%, transparent);
}

.hero-slide-media.is-empty {
  display: none;
}

.hero-slide-image,
.hero-slide-video {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.hero-slides-dots {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-slides-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(118, 185, 0, 0.5);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.hero-slides-dot.is-active {
  background: var(--accent, #76b900);
}

.hero-description--fade {
  animation: hero-desc-fade 0.35s ease;
}

@keyframes hero-desc-fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.hero-section--has-slides .hero-brand-title {
  transition: opacity 0.25s ease;
}
