/*
 * IEU Portal - Hero de la portada
 * Componente vigente usado por front-page.php.
 */

@keyframes ieuKen {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.045);
    }
}

.ieu-hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: #071a35;
    color: #fff;
}

.ieu-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    animation: ieuKen 8s ease-in-out infinite alternate;
}

.ieu-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 17, 40, .92),
        rgba(11, 45, 94, .74) 42%,
        rgba(11, 45, 94, .25) 72%,
        rgba(3, 17, 40, .05)
    );
}

.ieu-hero .ieu-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ieu-kicker {
    margin: 0 0 20px;
    color: var(--ieu-green, var(--green, #69b42e));
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ieu-hero h1 {
    max-width: 760px;
    margin: 0 0 18px;
    color: #fff;
    font-family: Merriweather, serif;
    font-size: 58px;
    line-height: 1.05;
    text-shadow: 0 6px 25px rgba(0, 0, 0, .28);
}

.ieu-hero h1 span {
    display: block;
    color: var(--ieu-gold, var(--gold, #d6a324));
}

.ieu-hero .ieu-hero-text {
    max-width: 760px;
    margin: 0 0 24px;
    color: #fff;
    font-size: 20px;
    line-height: 1.65;
}

.ieu-hero-btn {
    width: auto;
    min-width: 0;
    max-width: max-content;
    min-height: 46px;
    padding: 0 22px;
    align-self: flex-start;
    flex: 0 0 auto;
}

@media (prefers-reduced-motion: reduce) {
    .ieu-hero::before {
        animation: none;
    }
}

@media (max-width: 640px) {
    .ieu-hero {
        height: 520px;
    }

    .ieu-hero h1 {
        font-size: 36px;
    }

    .ieu-hero .ieu-hero-text {
        max-width: 100%;
        font-size: 17px;
        line-height: 1.55;
    }
}
