/* ==========================================================================
   PAGE BANNER — full-width hero under the fixed header
   ========================================================================== */

.page-banner {
    position: relative;
    width: 100%;
    min-height: 356px;
    display: flex;
    align-items: flex-end;
    background-color: var(--color-dark);
    overflow: hidden;
    margin-top: calc(-1 * var(--header-height));
    padding: var(--header-height) 97px 2.5rem;
}

.page-banner--has-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--banner-bg-mobile, var(--banner-bg));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.page-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 1572px;
}

.page-banner__title {
    font-family: var(--font-serif);
    font-size: 4.6875rem;
    font-weight: 700;
    line-height: 0.94;
    color: #fff;
    margin: 0;
    text-align: left;
}

.page-banner__subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.75rem 0 0;
}

@media (max-width: 767px) {
    .page-banner {
        padding-top: calc(var(--header-height) + 3.125rem);
        padding-left: var(--container-padding, 1.25rem);
        padding-right: var(--container-padding, 1.25rem);
        padding-bottom: 2.5rem;
        justify-content: center;
        align-items: flex-start;
    }

    .page-banner__inner {
        text-align: center;
    }

    .page-banner__title {
        text-align: center;
        font-size: 3.75rem;
        line-height: 1.01;
    }
}

@media (min-width: 768px) {
    .page-banner--has-image::before {
        background-image: var(--banner-bg);
    }
}
