
.page-back {
    padding: 60px 0 20px 0;
}

.lista-noticias a.item {
    width: 31.333333333333333333333333333333%;
    float: left;
    margin-bottom: 40px;
    margin-right: 3%;
    height: 570px;
}
.lista-noticias a.item:nth-child(3n) {
    margin-right: 0;
}
.lista-noticias .item .noticia-img {
    height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.lista-noticias .item .noticia-img::before {
    content: '';
    background-color: rgba(0,0,0,0);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-position: center center;
    transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
}
.lista-noticias .item:hover .noticia-img::before {
    content: '';
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(/frontend/assets/img/plus-big.png);
    background-repeat: no-repeat;
    background-size: 100px;
    background-position: center center;
}
.lista-noticias .item h2 {
    margin: 15px 0;
    font-family: BebasNeueRegular;
    font-size: 35px;
    color: #FFFFFF;
    height: 80px;
    line-height: 40px;
    overflow: hidden;
 }
.lista-noticias .item .dt-noticia, .lista-noticias .item .texto  {
    font-family: OpenSansRegular;
    color: #D69E71;
    font-size: 14px;
    text-align: justify;
}
.lista-noticias .item .texto {
    max-height: 72px;
    line-height: 18px;
    overflow: hidden;
}


.no-conteudo {
    font-family: BebasNeueRegular;
    color: #FFFFFF;
    font-size: 16px;
}


@media (min-width: 500px) and (max-width: 767px) {

    .page-back {
        padding: 60px 10px;
    }
    .lista-noticias {
        padding: 0;
    }
    .lista-noticias a.item {
        width: 47.5%;
        margin-right: 5%;
    }
    .lista-noticias a.item:nth-child(2n) {
        margin-right: 0;
    }
    .lista-noticias a.item:nth-child(3n) {
         margin-right: 5%;
    }


}

@media only screen and (max-width: 499px) {

    .page-back {
        padding: 60px 10px;
    }
    .lista-noticias {
        padding: 0;
    }
    .lista-noticias a.item {
        width: 100%;
        margin-right: 0;
    }

}