.wpv-product-videos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top:  1rem;
    width: 100%;
}

.wpv-video-facade {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    overflow: hidden;
    background: #000;
    border-radius: 4px;
}

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

.wpv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.wpv-video-facade:hover .wpv-play-btn {
    opacity: 1;
}

.wpv-video-facade iframe {
    width: 100%;
    height: 100%;
    border: none;
}
