body {
    margin: 0 auto;
    max-width: 1100px;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

/* CABECERA NEGRA + TÍTULO */
.cabecera {
    background: black;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.cabecera h1 {
    margin: 0;
    font-size: 32px;
}

/* MENÚ */
.menu ul {
    padding: 0;
    margin: 10px 0 0 0;
}

.menu li {
    list-style: none;
    display: inline-block;
    margin: 0 15px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* SECCIONES */
.seccion-noticias {
    background: white;
    border: 1px solid #bcbcbc;
    margin-top: 30px;
    padding-bottom: 20px;
}

/* TÍTULO DE CADA BLOQUE */
.titulo-seccion {
    text-align: center;
    background: #e0e0e0;
    margin: 0;
    padding: 15px 0;
    font-size: 22px;
}

/* DOS COLUMNAS */
.contenedor-noticia {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    gap: 20px;
}

/* NOTICIA */
.noticia h3 {
    margin-bottom: 5px;
}

.noticia h4 {
    margin-top: 0;
    color: #4a4a9e;
    font-weight: normal;
}

/* FIGURAS */
figure {
    text-align: center;
}

figure img {
    width: 100%;
    border: 1px solid #cfcfcf;
}


footer {
    background-color: black;
    color:white;
    margin-top: 30px;
    text-align: center;
}
