.portal-noticias{background:#fff;padding:18px;border-radius:8px;box-shadow:0 1px 3px rgba(0,0,0,0.06);}
.portal-noticias h2{margin:0 0 12px 0;font-size:18px;color:#222}
.noticias-list{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}
.noticia-item{display:flex;flex-direction:column;border:1px solid #eee;padding:8px;border-radius:6px;background:#fafafa;overflow:hidden}
.noticia-thumb{width:100%;height:300px;object-fit:cover;border-radius:4px;margin-bottom:8px;display:block;max-width:100%}
.noticia-link{color:inherit;text-decoration:none}
.noticia-link strong{display:block;margin-bottom:6px;font-size:15px}
.noticia-link .resumo{color:#555;font-size:13px;margin:0 0 6px}
.noticia-item time{font-size:12px;color:#888}
@media (max-width:480px){.noticia-thumb{height:90px}}

/* Single noticia: show image proportionally and avoid cropping only at top */
.portal-noticias.single .noticias-list{display:block}
.portal-noticias.single .noticia-item{display:flex;flex-direction:row;gap:12px;align-items:flex-start}
.portal-noticias.single .noticia-thumb{width:auto;max-width:40%;height:auto;object-fit:contain;border-radius:6px;margin:0}
.portal-noticias.single .noticia-link{display:flex;flex-direction:column}
.portal-noticias.single .noticia-link strong{font-size:18px}
.portal-noticias.single .resumo{margin-top:6px}

@media (max-width:640px){
	.portal-noticias.single .noticia-item{flex-direction:column}
	.portal-noticias.single .noticia-thumb{max-width:100%;margin-bottom:8px}
}

/* Multi-news (grid) — limit image height so grid items remain consistent */
.portal-noticias:not(.single) .noticia-thumb{height:160px;max-height:180px;object-fit:cover;border-radius:4px;margin-bottom:8px}
@media (max-width:480px){
	.portal-noticias:not(.single) .noticia-thumb{height:100px;max-height:120px}
}

/* Detail page styles */
.noticia-detail{max-width:900px;margin:1.5rem auto;padding:1rem}
.noticia-detail .voltar{display:inline-block;margin-bottom:12px;color:#333;text-decoration:none}
.noticia-detail h1{margin-top:0}
.noticia-detail .noticia-imagem img{max-width:100%;height:auto;border-radius:6px;margin:12px 0}
.noticia-detail .conteudo{margin-top:1rem;line-height:1.6;color:#222}
