 .noticias {
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.noticias h2 {
    text-align: center;
    color: #333;
}

.contenedor-noticias {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.noticia {
    width: calc(33.333% - 20px);
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.noticia h3 {
    color: #425B6D;
    font-size: 1.2rem;
}

.noticia p {
    color: #555;
}

.noticia small {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #888;
}

    }