.noticia {
    margin: 36px auto;
    max-width: 800px;
}
.noticia_portada {
    margin-bottom: 24px;
}
.noticia_portada img {
    border-radius: 8px;
}
.noticia_meta {
    font-size: 14px;
    color: #727272;
    margin-bottom: 12px;
}
.noticia_titulo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.noticia_bajada {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #444;
}
.noticia_cuerpo {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.noticia_cuerpo p {
    margin-bottom: 16px;
}
.noticia_galeria {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}
.noticia_galeria img {
    border-radius: 6px;
}

/* Fuente destacada */
.noticia_fuente {
    margin-top: 24px;
}
.noticia_fuente_card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    font-size: 14px;
}
.noticia_fuente_logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.noticia_fuente_logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.noticia_fuente_info {
    flex: 1;
}
.noticia_fuente_titulo {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 15px;
}
.noticia_fuente_fecha {
    color: #727272;
    font-size: 13px;
    margin-bottom: 6px;
}
.noticia_fuente_link a {
    color: #ff5e00;
    text-decoration: none;
    font-weight: 600;
}
.noticia_fuente_link a:hover {
    text-decoration: underline;
}
