.main-sections {
    display: flex;
    flex-direction: row;
}
.music-video-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, 36vw);
    gap: 16px;
    width: 100%;
    padding: 40px 10px 10px; 
    align-items: start;
    justify-content: center;
}
.music-video-chunk {
    flex-direction: column;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.music-video {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
    border: 2px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vid-size { width: 100%; }
.lyric-dropdown-button { 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3vh;
    background-color: rgba(102, 102, 102, 0.103);
    border-radius: 4px;
    cursor: url(../img/cursor2.png) 15 15, pointer;
}
.down-arrows { 
    height: 60%; 
    width: 24%; 
}
.down-arrows.flipped {
    transform: rotate(180deg);
}
.lyrics-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.video-description {
    width: 100%;
    padding: 12px 10px 10px 10px;
    background-color: rgba(0, 0, 0, 0.815);
}

.playlists, .playlist {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0.5vw;
}
.playlist { border: 2px solid black; gap: 3px; }
.playlist a { font-size: small; }
.bandcamp-embed { border: 0; width: 333px; height: 360px; }

@media (max-width: 1440px) {
    .main-sections { flex-direction: column; }
    .playlist { width: 333px; height: 360px; }
}

@media (max-width: 768px) {
    .music-video-list {
        grid-template-columns: repeat(auto-fit, 90vw);
    }
    .bandcamp-embed, .playlist { width: 100%; height: 360px; }
}