.youtube-facade {
    position: relative;
    width: 100%;
    max-width: 100%;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    background-color: #000;
    overflow: hidden;
    border-radius: var(--radius);
}

.youtube-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: white;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}
