.site_header{
    text-align: center;
    margin: 60px 0 40px 0;
}

.site_header h1{
    font-family: var(--fontTema);
    font-size: 2.5em;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 10px;
}

.site_header b{
    font-family: var(--fontTema);
    color: var(--colorSecondary);
    font-weight: 700;
}

.site_header p{
    font-size: 1.1em;
    color: #666;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.noticias{
    margin: 40px 0;
}

.noticias .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.noticias .noticias_top{
    width: 100%; /* Ocupa 100% para ser o destaque principal */
    margin-bottom: 20px;
}

.noticias .post_list{
    margin: 0;
    padding: 0;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.noticias .post_list:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.noticias .post_list_content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.noticias .post_list h1 {
    font-size: 1.4em;
    margin-bottom: 10px;
    line-height: 1.3;
}

.noticias .post_list h1 a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.noticias .post_list h1 a:hover {
    color: var(--colorMain);
}

.noticias .post_list .tagline{
    display: block; /* Mostrar o resumo */
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.noticias .post_list .link{
    display: inline-block;
    padding: 8px 15px;
    background: transparent;
    color: var(--colorMain);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s;
    border: 1px solid var(--colorMain);
    border-radius: var(--radius-sm);
    text-align: center;
    align-self: flex-start;
}

.noticias .post_list:hover .link,
.noticias .post_list .link:hover{
    background: var(--colorMain);
    color: #fff;
}

.noticias .noticias_more{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Grid responsivo */
    gap: 30px;
}

.img-responsive-16by9 {
    display: block;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
}
.img-responsive-16by9 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.noticias .post_list:hover .img-responsive-16by9 img {
    transform: scale(1.05);
}

/* Ajuste específico para o destaque (primeira notícia) */
.noticias_top .post_list {
    flex-direction: row; /* Imagem ao lado do texto em telas grandes */
}

.noticias_top .post_list .img-responsive-16by9 {
    width: 60%;
    padding-bottom: 0;
    height: auto;
    min-height: 350px;
}

.noticias_top .post_list .post_list_content {
    width: 40%;
    padding: 40px;
    justify-content: center;
}

.noticias_top .post_list h1 {
    font-size: 2em;
}

@media (max-width: 900px) {
    .noticias_top .post_list {
        flex-direction: column;
    }

    .noticias_top .post_list .img-responsive-16by9 {
        width: 100%;
        padding-bottom: 56.25%;
    }

    .noticias_top .post_list .post_list_content {
        width: 100%;
        padding: 20px;
    }
}

@media (max-width: 768px){
    .noticias .noticias_more {
        grid-template-columns: 1fr; /* Uma coluna no mobile */
    }

    .site_header h1 {
        font-size: 2em;
    }
}