/* Shared page banner */
.page-banner {
    position: relative;
    width: 100%;
    min-height: 360px;
    overflow: hidden;
    background: #e8f3fb;
    border-bottom: 1px solid rgba(223, 231, 241, 0.65);
}

.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.84) 34%, rgba(255, 255, 255, 0.34) 64%, rgba(255, 255, 255, 0.08) 100%),
        linear-gradient(180deg, rgba(3, 43, 102, 0.04), rgba(3, 43, 102, 0.16));
}

.page-banner__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.page-banner__inner {
    position: relative;
    z-index: 2;
    min-height: 360px;
    display: flex;
    align-items: center;
}

.page-banner__content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    padding: 54px 0 62px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--text-main, var(--heading, var(--bc-heading, #102d63)));
    font-size: 15px;
    font-weight: 700;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
    color: var(--primary, var(--bc-primary, #0754b8));
}

.page-banner h1 {
    margin-bottom: 14px;
    color: var(--text-main, var(--heading, var(--bc-heading, #102d63)));
    font-size: clamp(42px, 4vw, 56px);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: 0;
}

.page-banner p {
    max-width: 780px;
    margin-bottom: 0;
    color: #21344f;
    font-size: 21px;
    line-height: 1.62;
}

@media (max-width: 992px) {
    .page-banner,
    .page-banner__inner {
        min-height: 320px;
    }

    .page-banner__content {
        max-width: 760px;
        padding: 46px 0 54px;
    }
}

@media (max-width: 768px) {
    .page-banner,
    .page-banner__inner {
        min-height: 250px;
    }

    .page-banner__content {
        padding: 34px 0 38px;
    }

    .breadcrumb {
        gap: 8px;
        margin-bottom: 12px;
        font-size: 13px;
    }

    .page-banner h1 {
        margin-bottom: 10px;
        font-size: 26px;
        line-height: 1.14;
    }

    .page-banner p {
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .page-banner,
    .page-banner__inner {
        min-height: 220px;
    }

    .page-banner__content {
        padding: 28px 0 32px;
    }

    .breadcrumb {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .page-banner h1 {
        font-size: 23px;
    }

    .page-banner p {
        font-size: 14px;
    }
}
