/*
handler: ndmais-loop
varsion: 1.0.2
deps: ndmais-cards
*/

.nothing-found .section-title{
    font-size: 20px;
}

/* Esconde os posts novos inicialmente */
article.is-new-post {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Classe para animação de entrada quando exibidos */
article.is-visible-now {
    display: block !important;
    opacity: 1;
}

#new-posts-alert {
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 100;
}

#new-posts-alert:hover {
    transform: translateY(-2px);
}

@media all and (min-width:992px){

    .nothing-found .section-title{
        font-size: 24px;
    }

}