/* HERO DE NOTICIA */
.noticia-hero {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
}

.noticia-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.noticia-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
    z-index: 5;
}

.noticia-hero-texto {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: white;
    z-index: 10;
    max-width: 60%;
}

.noticia-hero-texto h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.noticia-subtitulo {
    font-size: 1.2rem;
    opacity: 0.9;
}

.noticia-meta {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CONTENIDO */
.noticia-contenido {
    margin-top: 40px;
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
}

.noticia-contenido p {
    font-size: 1.15rem;   /* AUMENTADO */
    line-height: 1.75;    /* Más aire entre líneas */
}

.noticia-imagen {
    width: 100%;
    border-radius: 12px;
    margin: 25px 0;
}

/* RELACIONADAS */
.noticias-relacionadas {
    margin-top: 60px;
}

.relacionadas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.relacionada-card {
    display: flex;
    gap: 12px;
    background: white;
    border: 1px solid var(--borde);
    border-radius: 12px;
    padding: 12px;
    transition: 0.2s;
}

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

.relacionada-card img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.relacionada-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}
