#home-hero {
  position: relative;
}

#home-hero-visual-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--global-border-radius, 20px);
  background: #141515;
}

#home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

#home-hero-visual-container .home-hero-video-controls {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

#home-hero-visual-container .home-hero-video-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font: inherit;
  font-size: 0.75rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

#home-hero-visual-container .home-hero-video-btn:hover {
  background: rgba(0, 0, 0, 0.65);
}

@media (max-width: 812px) {
  #home-hero-visual-container .home-hero-video-controls {
    bottom: 0.75rem;
  }
}
