/* =====================================================
   HERO
===================================================== */

.inem-hero {
    position: relative;
    width: 100%;
    min-height: 680px;
    display: flex;
    align-items: center;
    margin: 0;
    overflow: hidden;
    color: var(--inem-white);

    border-radius: 0;

    box-shadow: none;

    background:
        linear-gradient(
            90deg,
            rgba(8, 73, 43, .68) 0%,
            rgba(8, 73, 43, .46) 46%,
            rgba(8, 73, 43, .12) 100%
        ),
        var(--inem-hero-image);

    background-size: cover;
    background-position: center;
}
.inem-hero__content {
    width: min(var(--inem-container), calc(100% - 48px));
    margin: 0 auto;
    padding: 120px 0 100px;
}

.inem-kicker {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .5px;
}

.inem-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 1.05;
    font-weight: 900;
}

.inem-hero p {
    max-width: 700px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    opacity: .95;
}

.inem-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.inem-hero__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--inem-white);
    color: var(--inem-green-dark);
    text-decoration: none;
    font-weight: 700;
    transition: .25s ease;
}

.inem-hero__actions a:hover {
    transform: translateY(-2px);
    background: var(--inem-yellow);
}

.home .featured-image,
.home .post-image,
.home .page-header-image,
.home .inside-article > .featured-image,
.home .inside-article > .post-image {
    display: none !important;
}

/* =====================================================
   HOME: HERO FULL WIDTH
===================================================== */

.home #page,
.home .site-content,
.home .content-area,
.home .site-main,
.home .inside-article,
.home .entry-content,
.home .inem-home {
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding-top: 0;
}

.home #page {
    padding-inline: 0;
}

.home .inem-hero {
    width: 100vw;
    max-width: none;
    margin: 0;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
}

/* =====================================================
   HOME: HERO UNDER HEADER
===================================================== */

.home .inem-hero {
    margin-top: -108px;
    padding-top: 108px;
}

@media (max-width: 900px) {
   .inem-hero {
    width: 100%;
    min-height: 560px;
    margin: 0;
    border-radius: 0;

    background:
        linear-gradient(
            180deg,
            rgba(8, 73, 43, .66) 0%,
            rgba(8, 73, 43, .50) 58%,
            rgba(8, 73, 43, .24) 100%
        ),
        var(--inem-hero-image);

    background-size: cover;
    background-position: center;
}

.inem-hero__content {
    width: min(var(--inem-container), calc(100% - 32px));
    padding: 90px 0 70px;
}

 .home .inem-hero {
        margin-top: -78px;
        padding-top: 78px;
    }

}
