.inner-header {
    --inner-header-bg: #1d2d44;
    --inner-header-text: #fff;

    position: relative;
    overflow: hidden;
    padding: 4rem 0;

    color: var(--inner-header-text);
    background-color: var(--inner-header-bg);

    isolation: isolate;
}


/* Image Background
-------------------------------------------------------------- */

.inner-header--image {
    background-image: var(--inner-header-bg-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.inner-header--image::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;

    background: rgba(0, 0, 0, 0.25);
}


/* Layout
-------------------------------------------------------------- */

.inner-header__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}


/* Breadcrumbs
-------------------------------------------------------------- */

.inner-header__breadcrumbs {
    color: inherit;
    font-size: 14px;
    line-height: 1.4;
}

.inner-header__breadcrumbs .breadcrumbs {
    margin: 0;
}

.inner-header__breadcrumbs a {
    color: inherit;
    text-decoration: none;
    opacity: 0.7;

    transition: opacity 0.2s ease;
}

.inner-header__breadcrumbs a:hover,
.inner-header__breadcrumbs a:focus {
    opacity: 1;
}


/* Content
-------------------------------------------------------------- */

.inner-header__content-wrap {
    width: 100%;
    max-width: var(--ib-container);
    margin: 0 auto;
}

.inner-header__content {
    position: relative;
    width: 100%;
    padding: 2rem 0;
    color: inherit;
}


/* Eyebrow
-------------------------------------------------------------- */

.inner-header__eyebrow {
    margin-bottom: 14px;

    color: inherit;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    opacity: 0.75;
}


/* Heading
-------------------------------------------------------------- */

.inner-header__heading *{
    margin: 0;
    color: inherit;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}


/* Subheading
-------------------------------------------------------------- */

.inner-header__subheading {
    margin-top: 22px;
    color: inherit;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;

    opacity: 0.85;
}

.inner-header__subheading p {
    color: inherit;
}

.inner-header__subheading p:last-child {
    margin-bottom: 0;
}

.inner-header__subheading a {
    color: inherit;
}


/* Mobile
-------------------------------------------------------------- */

@media (max-width: 767px) {

    .inner-header {
        padding: 64px 0;
    }

    .inner-header__inner {
        gap: 24px;
    }

    .inner-header__content {
        padding: 28px 24px;
        border-radius: 18px;
    }

    .inner-header__heading {
        font-size: clamp(36px, 10vw, 52px);
    }

    .inner-header__subheading {
        margin-top: 18px;
        font-size: 17px;
        line-height: 1.5;
    }
}