/* =========================================================
   HERO DE CADA NOTICIA
   ========================================================= */

.inner-hero {
    position: relative;
    min-height: 480px;

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;
}

/* Overlay para mejorar la lectura del texto */
.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(7, 27, 53, 0.65);

    z-index: 1;
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}


 /* =========================================================
    NOTICIA 1
    ========================================================= */

.inner-hero.noticia-1 {
        background-image: url("https://images.unsplash.com/photo-1502744688674-c619d1586c9e?w=2000&auto=format&fit=crop");
}


/* =========================================================
   NOTICIA 2
   ========================================================= */

.inner-hero.noticia-2 {
    background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?w=700&auto=format&fit=crop");
}


/* =========================================================
   NOTICIA 3
   ========================================================= */

.inner-hero.noticia-3 {
    background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=700&auto=format&fit=crop");
}


/* =========================================================
   NOTICIA 4
   ========================================================= */

.inner-hero.noticia-4 {
    background-image: none;
}


/* =========================================================
   NOTICIA 5
   ========================================================= */

.inner-hero.noticia-5 {
    background-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?w=700&auto=format&fit=crop");
}


/* =========================================================
   HERO DIVIDIDO
   TEXTO IZQUIERDA / FOTO DERECHA
   ========================================================= */

.inner-hero-split {
    background-image: none;
    background-color: #071b35;
    min-height: 560px;
}

.inner-hero-split::before {
    display: none;
}

.hero-split-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 480px;
}

.hero-photo {
    flex: 0 0 420px;
    display: flex;
    justify-content: center;
    margin-right: -10rem;
}

.hero-photo img {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .hero-split-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-photo {
        order: -1;
        flex: 0 0 auto;
        max-width: 280px;
        margin-right: 0;
    }

    .hero-photo img {
        max-width: 280px;
    }

}


/* =========================================================
   TEXTO
   ========================================================= */

.inner-hero h1 {
    max-width: 950px;
    color: #ffffff;
}

.inner-hero p {
    max-width: 750px;
    color: rgba(255, 255, 255, 0.9);
}