/* --------------------------
SHORTCODE [vimeo_privacy_min]
CSS Style File
-------------------------- */

 /* Wrapper responsivo */
 .bz-vimeo-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: var(--ratio, 56.25%);
    height: 0;
    overflow: hidden;
}

/* iframe */ 
.bz-vimeo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Elemento cliccabile */
.bz-vimeo-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Thumbnail */
.bz-vimeo-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder senza thumbnail */
.bz-vimeo-no-thumb {
    position: absolute;
    inset: 0;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    font-size: 18px;
}

/* Overlay play */
.bz-vimeo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icona play minimal */
.bz-vimeo-play-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}