/* ----------------------------- */
/* Titulo                        */
/* ----------------------------- */

.titulo {
    padding: 60px 20%;
    position: relative;
    overflow: hidden;
    background: url('../img/bg-02.jpg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 300px; /* Altura de la seccion */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.titulo h1 {color:white;}

/* Capa de color superpuesta */
.titulo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #141e64;
    opacity: 0.75;
    z-index: -1;
}

@media (max-width: 768px) {
    .titulo {
        padding: 60px 10%;
    }
}

@media (max-width: 480px) {
    .titulo {
        height:200px;
        padding: 60px 10%;
    }
}

/* ----------------------------- */
/* ARTICULO                      */
/* ----------------------------- */

.articulo {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 20%;
}

.articulo-content {
    flex: 1; /* Ocupa el espacio restante */
    min-width: 300px; /* Ancho mínimo para evitar que se comprima demasiado */
}

.articulo-content h2 {
    text-align:left;
}

.articulo-content li {
    text-align:justify;
    margin-left: 14px;
}

.articulo-content p {
    text-align:justify;
}

.articulo-content p strong {
    color:#1e286e;
} 

.articulo-content img {
    display:block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0px 20px 0 rgb(0 0 0 / 10%);
    margin:0 auto 20px auto;
}

.articulo-content img.medium {
    width: 60%;
    display: block;
    margin: 0 auto;
    margin-bottom:20px;
}