/* Hero video with sound toggle only (hero-home-video-nav-simple) */

.hero-video-sound {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

.hero-video-sound__wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video-sound__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-sound__toggle {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-video-sound__toggle:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.05);
}

.hero-video-sound__toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.hero-video-sound__toggle svg {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-video-sound__icon--on {
    display: none;
}

.hero-video-sound.is-sound-on .hero-video-sound__icon--off {
    display: none;
}

.hero-video-sound.is-sound-on .hero-video-sound__icon--on {
    display: block;
}
