Селекторы, часть 2 4/20 решение

Вот такое решение:

ul.cards:nth-last-child(2) li {
background-color: #ff3300;
}

ul.cards li:nth-last-child(2) {
background-color: #339933;
}

ul:nth-last-child(2) li:nth-last-child(2) {
background-color: #0099ff;
}