.acf-video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    display: block;
    aspect-ratio: 16 / 9;
}
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-4-3  { aspect-ratio: 4 / 3; }
.ratio-1-1  { aspect-ratio: 1 / 1; }
.ratio-21-9 { aspect-ratio: 21 / 9; }

.video-wrapper, .video-wrapper iframe, .video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100% !important; height: 100% !important; border: none;
}

.video-overlay {
    background-size: cover;
    background-position: center;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center; 
    justify-content: center;
}

.video-overlay::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.2s ease, background-color 0.3s ease;
    z-index: 11;
}

.play-button::after {
    content: "";
    margin-left: 6px;
    border-style: solid;
    border-width: 15px 0 15px 25px; 
    border-color: transparent transparent transparent #000;
}

.video-overlay:hover .play-button { transform: scale(1.1); }