/* -----------------------------------------------------------------------
 * Façade Vimeo — styles du bouton de chargement à la demande (RGPD)
 * ----------------------------------------------------------------------- */
.video-facade {
    position: relative;
    display: block;
    cursor: pointer;
    background: #000;
    overflow: hidden;
}
.video-facade img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}
.video-facade:hover img,
.video-facade:focus img {
    opacity: 0.6;
}
.video-facade__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    pointer-events: none;
}
.video-facade__play {
    font-size: 3rem;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.video-facade__label {
    font-size: 0.75rem;
    color: #fff;
    background: rgba(0,0,0,0.55);
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: 0.03em;
}
