CSS selector for the Category Page Latest Post column?

I need to remove the border on the bottom of the Latest Posts column of the main Category Page.

The following doesn’t work:
div.latest-topic-list-item:last-child {border-bottom-style: none;}

For some reason this is the only list not structured as a table, just DIVs, which makes it more difficult to style with CSS.

Instead of last-child (which it isn’t) try going backwards skipping one. eg.

#list-area .categories-and-latest .column .latest-topic-list .latest-topic-list-item:nth-last-child(2) {
background-color: #f00; } 

I imagine at least half of those selectors can be safely removed, but I’ll leave it to you to do the tweaking.

yes, it works! thank you so much @Mittineague.

.latest-topic-list-item:nth-last-child(2) {border-bottom-style: none;}

Доступен ли всё ещё селектор .latest-topic-list? Я пытаюсь скрыть определённые посты на главной странице (только в представлении «Последние») с помощью CSS (длинная история), но у меня возникают трудности с поиском селектора, который мог бы адресовать только главную страницу.

Это работает, но скрывает посты и в других представлениях:

[data-topic-id="123"] {
    display: none;
}

Идеально подошло бы что-то вроде этого, но я не вижу селектора .latest-topic-list (или любого уникального селектора для представления последних тем) на странице:

.latest-topic-list [data-topic-id="123"] {
    display: none;
}