.latest-news .list-group-item {
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.latest-news .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.latest-news .list-group-item h5 {
    transition: color 0.3s ease;
    font-weight: bold; /* deixa todos os títulos em negrito */
}

.latest-news .list-group-item:hover h5 {
    color: #f9c809;
    /* amarelo destaque */
}

/* Destacar o item ativo (quando o conteúdo está aberto) */
.latest-news .list-group-item[aria-expanded="true"] {
    background-color: rgba(200, 196, 196, 0.1) !important;
    border-left: 4px solid #d81010;
}

.latest-news .list-group-item[aria-expanded="true"] h5 {
    color: #f9c809;
}
