.yt-block-wrapper{
    width:100%;
}

.yt-slider{
    display: flex;
    justify-content: space-between;
    gap:50px;
    max-width: 1200px;
    margin: 0 auto;
}

.yt-video-wrapper{
    width: 50%;
    height:max-content;
}

.yt-video-wrapper > iframe{
    width:100%;
    aspect-ratio: 16/9;
}

@media (max-width: 1200px){
.yt-slider{
    max-width: 960px;
}
}

@media (max-width: 960px){
.yt-slider{
    gap:25px;
    max-width: 600px;
}

}

@media (max-width: 640px){
    .yt-slider{
        flex-direction:column;
        gap:25px;
    }
    
    .yt-video-wrapper{
        width: 100%;
    }
    
    
    .t-width_100:has(.yt-block-wrapper){
        padding-left:20px;
    }
}