/* ==========================================================================
   CLR Vimeo Player Block
   ========================================================================== */

.clr-vimeo-player {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Cover video — oversized iframe centered and clipped */
.clr-vimeo-player__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Maintain 16:9 while always covering the container */
    width: 177.78vh;  /* 16/9 × 100vh */
    min-width: 100%;
    height: 56.25vw;  /* 9/16 × 100vw */
    min-height: 100%;
    pointer-events: none;
    background-color: black;
}

.clr-vimeo-player__bg iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Headline centered over the video */
.clr-vimeo-player__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    margin: 0 auto;
}

.clr-vimeo-player__headline {
    color: #fff;
    text-align: center;
    margin: 0;
    text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.75);
}
