.container-corpo-grid h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 15px;
}

/* "Fórmula" para postagens de notícia */
.bloco-noticia {
    /* display: flex; */
    flex-wrap: wrap; 
    justify-content: center; 
    align-items: center;
    /* width: 600px; */
    /* height: auto; */
    padding: 0;
    margin: 0;
    margin-top: 50px;

    /* flex-wrap: wrap; 
    justify-content: center; 
    align-items: center;
    margin-bottom: 30px; */
    box-sizing: border-box; /* Evita que o padding cause transbordamento */
}

.bloco-noticia * {
    width: 580px;
}

.bloco-noticia figure {
    flex-wrap: wrap; 
    justify-items: center;
    justify-content: center; 
    align-items: center;
}

.bloco-noticia img {
    padding: 0;
    margin: 5px;
    max-height: auto;
    box-shadow: 0 0 15px rgb(171, 148, 148);
}

.bloco-noticia h2 {
    padding: 10px 3px;
    font-weight: 500;
    margin: 2px;
    justify-content: left;
    text-align: left;
}

.bloco-noticia figcaption {
    padding: 5px 3px;
    margin: 2px;
    justify-content: left;
}

@media (max-width: 675px){
    .bloco-noticia * {
        width: 400px;
    }
    .bloco-noticia img {
        max-height: auto;
    }
}

@media (max-width: 480px){
    .bloco-noticia * {
        width: 300px;
    }
}

/* @media (max-width: 380px){
    .bloco-noticia * {
        width: 300px;
    }
} */