/* xl - DESKTOP STYLES */ 
.yt-playlist-gallery{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
}

.yt-featured-video iframe{
    width:100%;
    aspect-ratio:16/9;
    border:0;
}

.yt-video-list{
    max-height:700px;
    overflow-y:auto;
}

.yt-video-item{
    display:flex;
    gap:10px;
    margin-bottom:12px;
    cursor:pointer;
    border:1px solid #ddd;
    padding:8px;
}

.yt-video-item img{
    width:120px;
    height:auto;
}

.yt-video-title{
    font-size:14px;
    line-height:1.4;
}

@media(max-width:980px){

    .yt-playlist-gallery{
        grid-template-columns:1fr;
    }

}

