.list_blog{
    width: 100%;
    height: 100%;
    background-color: #F3F3F3;
}
#blog .list_blog{
    background: linear-gradient(180deg, rgba(243,243,243,1) 0%, rgba(243,243,243,1) 6%, rgba(255,255,255,1) 6%, rgba(255,255,255,1) 100%);
}
.list_blog .blogs{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1.9rem;
}
.list_blog .blogs h6{
    font-size: 5rem;
    line-height: 6rem;
    text-align: center;
    color: #151519;
    padding: 4rem 0;
    font-weight: bold;
}
#post_blog .list_blog .blogs h6{
    font-weight: bold;
    font-size: 3.7rem;
    line-height: 4.9rem;
    text-align: left;
    color: #151519;    
}
.list_blog .blogs .view_more_blog{
    font-size: 2.2rem;
    line-height: 2.4rem;
    text-align: center;
    font-weight: 700;
    color: #fff;
    padding: 1.8rem 2.6rem;
    background-color: #E41A33;
    border-radius: 1rem;
}
.list_blog .blogs ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}
.list_blog .blogs ul li{
    width: 40.4rem;
    height: 61rem;
    margin-bottom: 7rem;
}
.list_blog .blogs ul li .image{
    width: 100%;
    height: 23.4rem;
}
.list_blog .blogs ul li .image img{
    width: 100%;
    height: 100%;
}
.list_blog .blogs ul li .info{
    padding: 2.2rem 2.7rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: 32.7rem;
    height: 100%;
}
.list_blog .blogs ul li .info .categorie{
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 2.4rem;
    text-align: left;
    color: #a5a5a5;    
    padding-bottom: 0.5rem;
}
.list_blog .blogs ul li .info h2{
    font-weight: bold;
    font-size: 2.6rem;
    line-height: 2.4rem;
    text-align: left;
    color: #1c1a37;    
    padding-bottom: 2.3rem;
}
.list_blog .blogs ul li .info .text{
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 2.4rem;
    text-align: left;
    color: #a5a5a5;
}
.list_blog .blogs ul li .info_date{
    display: flex;
    margin-top: auto;
    width: 100%;
    justify-content: space-between;
    padding: 0rem 3rem;
    border-top: 0.1rem solid #707070;
}
.list_blog .blogs ul li .info_date .date{
    font-weight: normal;
    font-size: 1.8rem;
    line-height: 2.4rem;
    text-align: left;
    color: #a5a5a5;
    padding-top: 0.8rem;
}
.list_blog .blogs ul li .info_date .view_more{
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 2.4rem;
    text-align: left;
    color: #151519;    
    padding-top: 0.8rem;
}
.list_blog .pagination{
    width: 100%;
    height: 100%;
    margin-bottom: 7rem;
}
.list_blog .pagination ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.list_blog .pagination ul li{
    margin-right: 3.4rem;
    display: flex;
}
.list_blog .pagination ul li:last-child{
    margin-right: 0;
}
.list_blog .pagination ul li a{
    font-weight: normal;
    font-size: 2.4rem;
    line-height: 2.6rem;
    text-align: left;
    color: #151519;
}
.list_blog .pagination ul li a.selected{
    font-weight: bold;
}
/* Estilos Base para Tabelas no Conteúdo */
table {
    /* Garante que a largura de 100% no HTML funcione */
    width: 100%; 
    /* Colapsa bordas para que linhas duplas não apareçam */
    border-collapse: collapse; 
    /* Adiciona uma borda básica na tabela */
    border: 0.1rem solid;
    margin: 2rem 0; /* Adiciona um espaçamento acima e abaixo da tabela */
}

/* Estilos para Células da Tabela (<th> e <td>) */
table th, 
table td {
    /* Adiciona a borda que você mencionou */
    border: 0.1rem solid;
    /* Adiciona padding interno (espaçamento dentro da célula) */
    padding: 1rem; 
    /* Alinhamento de texto padrão */
    text-align: left;
    /* Garante que as linhas da tabela usem o mesmo espaçamento */
    line-height: 1.5; 
    
    /* Alinhamento vertical central para conteúdo dentro da célula */
    vertical-align: top; 
}

/* Estilo para o cabeçalho da tabela */
table th {
    /* Destaca o cabeçalho (opcional) */
    font-weight: bold;
}