#mw-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 5px 50px 5px;
}


/* ULTIMOS POSTS*/

.ultimos-posts-title {
    color: #000;
    font-family: "Poppins-Bold", Sans-serif;
    font-size: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px 0;
}

.ultimos-posts-title:after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 1px solid;
}

.mw-ultimos-posts-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 15px;
}

.ultimos-posts-artigo a {
    font-family: "Poppins-Regular", Sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.ultimos-posts-artigo figure {
    margin-bottom: 20px;
    display: flex;
    max-height: 200px;
    min-height: 200px;
}

.ultimos-posts-artigo img {
    width: 100%;
}


/* NEXT AND PREV BUTTOM */

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-top: 80px;
    align-items: center;
}

.footer-buttons button {
    text-align: center;
    font-family: "Poppins-Bold", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 5.7em;
    letter-spacing: 0;
    cursor: pointer;
}

.efo-form-respost {
    color: green;
}


/* REPONSIVIDADE */
@media (max-width:1200px){
    #mw-page-container{
        padding: 20px;
    }
}

/*  ULTIMOS POSTS */

@media (max-width: 1024px) {
    .mw-ultimos-posts-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .mw-ultimos-posts-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .ultimos-posts-artigo figure {
        max-height: 300px;
    }
}