.news-block {
    background: var(--bg);
    padding: var(--space-lg) 0 var(--space-2xl);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Cabeçalho */
.news-head {
    margin: var(--space-sm) 0 var(--space-md);
}

.news-head h2 {
    margin: 0;
    display: inline-block;
    background: linear-gradient(90deg, var(--green-2), var(--green-1));
    color: #fff;
    font-weight: 800;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
}

/* Grade de linhas */
.news-grid {
    display: grid;
    grid-template-columns: minmax(560px, 1fr) 390px;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

/* Cartões base */
.card {
    background: var(--paper);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-md);
}

/* Destaque */
.news-feature .cover img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.nf-body {
    padding: 16px 18px 18px;
}

.news-feature h3 {
    margin: 4px 0 8px;
    font-size: 1.733rem;
    line-height: 1.24;
}

.news-feature h3 a {
    color: var(--text);
    text-decoration: none;
}

.news-feature h3 a:hover {
    text-decoration: underline;
}

.news-feature h3 a:focus-visible,
.news-item h4 a:focus-visible,
.btn-more:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Lateral */
.news-side {
    display: grid;
    gap: 18px;
}

.news-item {
    display: grid;
    grid-template-columns: 1fr 160px;
    /* texto | thumb (thumb à direita) */
    align-items: center;
    gap: 16px;
    padding: 12px 14px;
}

.news-item .thumb img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
}

.news-item h4 {
    margin: 2px 0 8px;
    font-size: 1.2rem;
    line-height: 1.25;
}

.news-item h4 a {
    color: var(--text);
    text-decoration: none;
}

.news-item h4 a:hover {
    text-decoration: underline;
}

/* Meta + barra verde */
.meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-family: var(--font-sans);
    font-size: 0.8667rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.bar {
    flex: 1;
    height: 6px;
    background: var(--green-light);
    border-radius: 6px;
    overflow: hidden;
}

.bar i {
    display: block;
    height: 100%;
    width: var(--v, 50%);
    background: linear-gradient(90deg, var(--green-2), var(--green-1));
}

/* Botão "ver todas" */
.news-more {
    text-align: center;
    margin-top: 8px;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--btn-h);
    padding: 0 var(--btn-px);
    background: var(--paper);
    border: 2px solid var(--green);
    color: var(--green);
    border-radius: var(--btn-radius);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    font-size: var(--btn-fs);
    font-weight: var(--btn-fw);
}

.btn-more:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

/* Responsivo */
@media (max-width:1080px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-feature .cover img {
        height: 280px;
    }
}

@media (max-width:640px) {
    .news-item {
        grid-template-columns: 1fr 120px;
    }

    .news-feature .cover img {
        height: 220px;
    }
}

@media (max-width:460px) {
    .news-item {
        grid-template-columns: 1fr;
    }

    .news-item .thumb img {
        height: 160px;
    }
}