

/* POSTS PAGINA INICIAL */

.home-blog{
    padding-bottom: 0;
}


.posts-sidebar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: -40px;
    background-color: #EFEFEF;
   /* background-image: url(../img/background_natal_2025.png);
    background-size: cover;*/

}

.news-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px; /* Espaçamento entre os posts */
    padding: 10px; /* Padding ao redor dos posts */
    z-index: 1;
   
}

.noticias-institucionais {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: left;
    margin-left: 30px;
    margin-bottom: 10px;
    margin-top: 15px;
    color: #1351b4;
}

.post-item {
    flex: 0 1 calc(33.333% - 20px);
    margin-bottom: 10px;
    box-sizing: border-box;
   /* border: 1px solid #e2e1e1;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.post_institucional {
    display: flex;
    flex-direction: column;
}

.thumbnail-post {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
}

.thumbnail-post img {
    width: 100%; 
    min-width: 220px;
    max-width: 220px;
    height: 160px; 
    /*object-fit: cover; */
    border-radius: 15px;
    margin-top: 10px;
}

.title-post {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 10px; /* Espaçamento superior para separar do fim da imagem */
    margin-left: 20px;
    color: #333;
    text-align: left;
    margin-bottom: 0px;
    max-width: 220px;
    align-self: flex-start;
}

.title-post .post-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.title-post .post-link:hover {
    color: #007bff;
}

.meta-info {
    
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

.category-post {
    margin-right: 14px;
    margin-left: 20px;
    text-decoration: none;
    color: #007bff;
    display: none;
}

.category-post:hover {
    text-decoration: underline;
}

.date-post {
    font-size: 0.7rem;
    margin-left: 20px;
    color: #777;
}

