
ul.list a {
    color: #fff;
}

ul.list .download a {
    border: solid 1px var(--bs-gray-700);
    color: var(--bs-black);
    background-color: var(--bs-gray-800);
}

ul.list li:nth-of-type(odd) {
    background-color: var(--bs-gray-900);
}

@media (min-width: 768px) {
    ul.list li:nth-of-type(odd) {
        background-color: transparent;
    }
    
    ul.list li:nth-child(4n+1),
    ul.list li:nth-child(4n+4) {
        background-color: var(--bs-gray-900);
    }
}