/* POSTS PAGINA INICIAL */

.news-container-all {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px; /* Espaçamento entre os posts */
    padding: 10px; /* Padding ao redor dos posts */
  
    
}

.noticias-gerais{
    font-size: 1.5rem;
    font-weight: 800;
    text-align: left;
    margin-left: 30px;
    margin-bottom: 10px;
    color: #1351b4;
    
}

.mais-noticias{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.mais-noticias-container{
    width: 200px;
    height: 40px;
    margin-bottom: 5px;
    background-color: #1351b4;
    border-radius: 10px;
    display: flex;  
    justify-content: center; 
    align-items: center;  
    cursor: pointer;  
    text-decoration: none; 
}

.mais-noticias-a{
    font-size: 20px;
    font-weight: 600;
    color: #FFF;
    margin: 0;
    margin-bottom: 4px;
}

.post-item-all {
    flex: 0 1 calc(33.333% - 20px);
    margin-bottom: 10px;
    box-sizing: border-box;
    transition: transform 0.3s, box-shadow 0.3s;

}

.post-item-all:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.post_all {
    display: flex;
    flex-direction: column;
    
}

.thumbnail-post-all {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    
}

.thumbnail-post-all img {
    width: 100%; 
    min-width: 220px;
    max-width: 220px;
    height: 160px; 
   /* object-fit: cover; */
    border-radius: 15px;
    margin-top: 10px;
    align-self: center; /* Centraliza a imagem */
}

.title-post-all {
    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-all .post-link-all {
    text-decoration: none; 
    color: inherit;
    transition: color 0.3s;
    
}

.title-post-all .post-link-all:hover {
    color: #007bff;
}

.meta-info-all {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
}

.category-post-all {
    margin-right: 14px;
    margin-left: 20px;
    text-decoration: none;
    color: #007bff;
    display: none;
}

.category-post-all:hover {
    text-decoration: underline;
}

.date-post-all {
    font-size: 0.7rem;
    margin-left: 20px;
    color: #777;
}
  
