.yt-facade {
    position: relative;
    display: block;
    cursor: pointer;
    background: #000;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
}

.yt-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}

.yt-facade:hover img,
.yt-facade:focus img {
    opacity: 0.75;
}

.yt-facade__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    pointer-events: none;
}

.yt-facade__play svg {
    width: 68px;
    height: 48px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
    transition: transform 0.15s ease;
}

.yt-facade:hover .yt-facade__play svg,
.yt-facade:focus .yt-facade__play svg {
    transform: scale(1.1);
}

.yt-facade__play-bg {
    fill: #ff0000;
    opacity: 0.9;
}

.yt-facade__play-arrow {
    fill: #fff;
}

/* Live iframe — injected by JS on click */
.yt-facade iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
