/* Recorte */

.recorte {
    justify-content: center;
    display: flex;
    width: 100%;
}



.container-recortes {
    width: 100%;
}

.itens-recorte {
    width: 330px;
    display: inline-table;
    padding: 25px;
    margin: 10px;
}

.recorte h3 {
    margin-bottom: 15px;
    text-decoration: none;
    word-wrap: break-word;
    padding-top: 15px;
}

.recorte p {
    margin: 0 0 10px;
}

.itens-recorte figure{
    height: 280px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

/* Pagincação */


.paginacao {
    padding: 20px;
}

.paginacao ul {
    display: flex;
    list-style: none;
    width: fit-content;
    flex-wrap: wrap;
    height: fit-content;
    margin: auto;
    align-items: center;
    justify-content: center;

}

.paginacao ul li a {
    padding: 20px;
    transition: .5s background-color;
}

.pagination li {
    display: flex;
    align-items: center;
}

.paginacao svg{
    width: 12px;
    height: 12px;
}

.numero-conteudo{
    font-weight: bold;
}

.paginacao-primeiro svg{
transform: rotate(180deg);
margin-right: 5px;
}

/* Medias */

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

    /* Paginação */

    .paginacao ul li {
        padding: 20px;
    }

    .paginacao ul {
        padding: 0;
    }
}

@media screen and (max-width: 710px) {
    .itens-recorte{
        width: 100%;
        margin: 0;
    }

}