/*
 * About page only.
 * The parent selector prevents these rules from affecting other static pages.
 */
.static-content-shell:has(> .about-page) {
    background: #fff;
    border: 1px solid rgba(12, 54, 105, 0.08);
    border-radius: 10px;
    box-shadow: 0 18px 48px rgba(13, 43, 82, 0.12);
    color: #202936;
    padding: 34px 40px 48px;
}

.static-content-shell:has(> .about-page) > .breadcrumb-box {
    display: none;
}

.static-content-shell:has(> .about-page) > .breadcrumb-box a,
.static-content-shell:has(> .about-page) > .breadcrumb-box .breadcrumb-entry {
    color: #202936;
    font-family: "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
}

.static-content-shell:has(> .about-page) > .breadcrumb-box a:last-child,
.static-content-shell:has(> .about-page) > .breadcrumb-box .breadcrumb-entry:last-child {
    color: #08478e;
    font-weight: 700;
}

.about-page {
    color: #202936;
}

.about-page__hero {
    align-items: center;
    display: flex;
    height: 250px;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-page__hero::after {
    background: linear-gradient(90deg, rgba(1, 28, 61, 0.06), rgba(0, 25, 54, 0.2));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.about-page__hero img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-page__hero h1 {
    color: #9bc9f2;
    font-family: "Bebas Neue", "Sora", Arial, sans-serif;
    font-size: 82px;
    font-weight: 400;
    line-height: 0.8;
    margin: 0;
    position: absolute;
    text-align: center;
    text-shadow: 0 4px 16px rgba(0, 20, 47, 0.65);
    text-transform: uppercase;
    z-index: 1;
}

.about-page__hero h1 span {
    display: block;
}

.about-page__section {
    margin-top: 34px;
}

.about-page__section h2 {
    color: #063e80;
    font-family: "Sora", "Inter", Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.about-page__section p {
    color: #202936;
    font-family: "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 12px;
}

.about-page__section p:last-child {
    margin-bottom: 0;
}

.about-page__section strong {
    color: #111b28;
    font-weight: 700;
}

.about-page__philosophy {
    align-items: stretch;
    display: grid;
    gap: 46px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.about-page__philosophy-image {
    aspect-ratio: 5 / 3;
    margin: 0;
    overflow: hidden;
}

.about-page__philosophy-image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.about-page__philosophy-copy {
    align-self: center;
}

.about-page__section .about-page__values {
    color: #08478e;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

@media (max-width: 1199px) {
    .static-content-shell:has(> .about-page) {
        padding: 30px 32px 42px;
    }

    .about-page__hero {
        height: 230px;
    }

    .about-page__hero h1 {
        font-size: 72px;
    }

    .about-page__philosophy {
        gap: 32px;
    }
}

@media (max-width: 991px) {
    .about-page__philosophy {
        grid-template-columns: 1fr;
    }

    .about-page__philosophy-image {
        aspect-ratio: 3 / 2;
    }
}

@media (max-width: 767px) {
    .static-content-shell:has(> .about-page) {
        border-radius: 6px;
        padding: 24px 20px 32px;
    }

    .static-content-shell:has(> .about-page) > .breadcrumb-box {
        margin-bottom: 20px;
    }

    .about-page__hero {
        height: 210px;
    }

    .about-page__hero img {
        object-position: 34% center;
    }

    .about-page__hero h1 {
        font-size: 54px;
    }

    .about-page__section {
        margin-top: 28px;
    }

    .about-page__section h2 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .about-page__section p {
        font-size: 14px;
    }

    .about-page__philosophy {
        gap: 24px;
    }

    .about-page__section .about-page__values {
        font-size: 15px;
        margin-bottom: 14px;
    }
}
