<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.lookat-youtube-videos {
    --lookat-youtube-gap: 10px;
    --lookat-youtube-video-min-width: 150px;
}

.lookat-youtube-videos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--lookat-youtube-gap);
}

@media only screen and (max-width: 480px) {

    .lookat-youtube-videos {
         justify-content: space-around;
     }
}

@media only screen and (max-width: 600px) {

    .lookat-youtube-videos a.lookat-youtube-cover:nth-of-type(1),
    .lookat-youtube-videos div.lookat-youtube-player:nth-of-type(1) {
        min-width: 100%;
    }
}</pre></body></html>