.home-blog-texto{
    padding: 5px;
    display: flex;
    flex-direction: column;
    max-height: 240px;
    margin-bottom: 5px;
}

.news-container-texto { 
    margin-top: 0;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 200px; /* Define uma altura máxima para o contêiner de notícias */
    overflow-y: auto;
}

.news-container-texto::-webkit-scrollbar {
    width: 10px; 
}

.news-container-texto::-webkit-scrollbar-track {
    background-color: #f1f1f1; 
    border-radius: 10px; 
}

.news-container-texto::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px; 
    height: 50%;
    border: 2px solid #f1f1f1; 
}

.news-container-texto::-webkit-scrollbar-thumb:hover {
    background-color: #555; 
}

.noticias-texto{
    font-size: 24px;
    font-weight: 800;
    text-align: left;
    margin-left: 5px;
    margin-bottom: 10px;
    color: #1351b4;
    display: none;
}

.mais-noticias{
    
    display: flex;
    justify-content: flex-start; 
    margin-bottom: 20px;
    align-items: center;
    margin-left: 30px;
}

.mais-noticias-container{
    
    width: 18%;
    height: 30px;
    margin-bottom: 5px;
    background-color: #1351b4;
    border-radius: 5px;
    display: flex;  
    justify-content: center;
    align-items: center; 
    cursor: pointer;  
    text-decoration: none; 
}

.mais-noticias-a{
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    margin: 0;
    margin-bottom: 4px; 
}

.ver-mais{
    margin-bottom: 30px;

}

.ver-mais-a{
    font-size: 15px;
    font-weight: 600;
    color: #1351b4;
    margin-left: 35px;
}


.post-item-texto {
    flex: 100%;
    margin-bottom: 10px;
    box-sizing: border-box;
    width: 95%;
    border-top: 1px dotted #000;
   

}


.post-texto {
    display: flex;
    flex-direction: column;
   /* gap: 10px;  Espaçamento entre a imagem/texto e as meta informações */
}

.thumbnail-post-texto {
    display: flex;
    align-items: center; 
    gap: 10px; 
    margin: 10px;
    margin-bottom: 2px;
    
}

.thumbnail-post-texto img {
    min-width: 60px;
    min-height: 60px;
    width: 60px; 
    height: 60px; 
    object-fit: cover;
    border-radius: 10px;
    margin-left: 5px;
    flex-shrink: 0; /* Impedir que a imagem encolha */
}

.title-post-texto {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    width: 100%;
    color: #333;
    text-align: left;
    margin: 0;
}

.title-post-texto .post-link-texto {
    text-decoration: none; 
    color: inherit;
    transition: color 0.3s;
    
}

.title-post-texto .post-link-texto:hover {
    color: #007bff;
}

.date-post-texto {
    font-size: 0.7rem;
    color: #a1a1a1;
}

.title-post-texto i{
    font-size: 0.7rem;
    margin-right: -5px;
    color: #a1a1a1;
  
}

.meta-info p{
    margin-bottom: 8px;
}

.meta-info i{
    font-size: 0.7rem;
    margin-right: -5px;
    color: #a1a1a1;
    display: none;
    
}