.video-section {
    height: 50vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    /* background: #0a0a0a; */
}

@media (min-width: 992px) {
    .video-section {
        height: 90vh;
    }
}

/* @media (min-width: 1500px) {
    .video-section {
        height: 72vh;
    }
} */

.video-wrapper {
    height: 100%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

/* .video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
} */

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Controls overlay */
.controls {
    position: absolute;
    inset: 0;
    transition: background 0.35s ease;
}

/* .video-section.playing:hover .controls {
    background: rgba(0, 0, 0, 0.22);
} */

/* Shared button */
#play,
#pause {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.25s ease;
}

/* Play button — visible by default */
#play {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.25);
    opacity: 1;
    pointer-events: all;
}

#play i {
    margin-left: 4px; /* optical centering */
}

#play:hover {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.6);
}

/* Pause button — hidden by default */
#pause {
    width: 64px;
    height: 64px;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
}

#pause:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

/* Playing state: hide play */
.video-section.playing #play {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.85);
}

/* Playing + hover: show pause */
.video-section.playing:hover #pause {
    opacity: 1;
    pointer-events: all;
}

/* Video Banner */
.video-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 1rem;
    /* background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.5) 55%,
        transparent 100%
    ); */
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.video-section.playing .video-banner {
    opacity: 0;
}

.video-section.playing:hover .video-banner {
    opacity: 1;
}

.video-banner-eyebrow {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0.45rem;
}

.video-banner-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.video-banner-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    max-width: 540px;
    line-height: 1.55;
}

@media (min-width: 768px) {
    .video-banner {
        padding: 3rem 3rem 2rem;
    }

    .video-banner-title {
        font-size: 1.35rem;
    }

    .video-banner-sub {
        font-size: 0.875rem;
    }

    #play {
        width: 88px;
        height: 88px;
        font-size: 1.6rem;
    }

    #pause {
        width: 70px;
        height: 70px;
        font-size: 1.35rem;
    }
}
