.yt-facade {
    position: relative;
    cursor: pointer;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
}
.yt-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease, opacity .3s ease;
}
.yt-facade:hover img {
    transform: scale(1.04);
    opacity: .85;
}
.yt-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.yt-play-btn::before {
    content: '';
    width: 64px;
    height: 64px;
    background: rgba(204,32,32,.92);
    border-radius: 50%;
    display: block;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.yt-facade:hover .yt-play-btn::before {
    background: #cc2020;
    transform: scale(1.1);
}
.yt-play-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 22px solid #fff;
    margin-left: 4px;
}
