/* ==================================================
   BLOQUE NOTICIAS 1 - CONTENEDOR GENERAL
================================================== */
.noticias-contenedor {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 20px 40px 20px;
}

/* ==================================================
   BLOQUE NOTICIAS 2 - ENCABEZADO
================================================== */
.noticias-encabezado {
    margin-bottom: 30px;
    text-align: center;
}

.noticias-encabezado h1 {
    margin-bottom: 10px;
}

.noticias-subtitulo {
    margin: 0;
    opacity: 0.85;
}

/* ==================================================
   BLOQUE NOTICIAS 3 - BOTÓN SUPERIOR
================================================== */
.noticias-boton-volver {
    margin-bottom: 30px;
    text-align: center;
}

.noticias-boton-volver .boton-verde {
    font-size: 14px;
    padding: 8px 18px;
}

/* ==================================================
   BLOQUE NOTICIAS 4 - LISTADO DE NOTICIAS
================================================== */
.noticias-listado {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ==================================================
   BLOQUE NOTICIAS 5 - TARJETA DE NOTICIA
================================================== */
.noticia-card {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 25px;
    border-radius: 14px;
}

.noticia-card h2 {
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
}

.noticia-card h2 a {
    color: inherit;
    text-decoration: none;
}

.noticia-card h2 a:hover {
    text-decoration: underline;
}

.noticia-meta {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 15px;
    text-align: center;
}

.noticia-imagen-contenedor {
    margin-bottom: 18px;
}

.noticia-imagen {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.noticia-resumen {
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: center;
}

.noticia-card .boton-verde {
    margin: 12px auto 0;
    font-size: 14px;
    padding: 8px 18px;
}

/* ==================================================
   BLOQUE NOTICIAS 6 - MENSAJE SIN NOTICIAS
================================================== */
.noticias-vacio {
    background-color: rgba(255, 255, 255, 0.04);
    padding: 25px;
    border-radius: 14px;
    text-align: center;
}

.noticias-vacio p {
    margin: 0;
    line-height: 1.7;
}

/* ==================================================
   BLOQUE NOTICIAS 7 - RESPONSIVE
================================================== */
@media (max-width: 768px) {
    .noticias-contenedor {
        padding: 15px 12px 30px 12px;
    }

    .noticia-card {
        padding: 20px;
    }
}