/* Lista de cards */
.lista-noticias {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

/* Card */
.noticia-card {
    display: flex;
    gap: 18px;
    padding: 14px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e2e2;
    text-decoration: none;
    color: #111;
    transition: transform .15s, box-shadow .15s;
}

.noticia-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Imagem */
.noticia-img-wrapper {
    width: 160px;
    height: 90px;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
}

.noticia-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Texto */
.noticia-info {
    flex: 1;
}

.noticia-titulo {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
}
.noticia-chamada {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.noticia-data {
    margin-top: 4px;
    color: #888;
    font-size: .85rem;
}

/* Responsivo */
@media (max-width: 420px) {
    .noticia-card {
        flex-direction: column;
    }

    .noticia-img-wrapper {
        width: 100%;
        aspect-ratio: 16 / 9; /* mantém a proporção 4:3 automaticamente */
        height: auto;        /* deixa a altura fluir */
    }

    .noticia-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}





.noticia-titulo-principal {
    font-size: 1.4rem;

    margin: 20px 0 25px;
    color: #111;
}

.noticia-paragrafo {
    font-size: 1.05rem;
    line-height: 1.4;
    margin-bottom: 18px;
    color: #333;
}

.noticia-figure {
    margin: 25px 0;
    text-align: center;
}

.noticia-img {
    max-width: 100%;
    height: auto;
}

.noticia-legenda {
    font-size: 0.85rem;
    color: #666;
    margin-top: 6px;
}

.noticia-video iframe {
    border: 0;
    width: 100%;
}

h1 {
	font-size: 1.5rem;
	font-family: gothamRoundedMedium;
}
.conteudo-interno{
	background: white;
	padding: 20px 50px;
	
}

@media (max-width: 420px) {
	.conteudo-interno{
	background: white;
	padding: 20px 20px;
	
}
}