.company_hero {
    position: relative;
}

.company_hero::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 44%;
    height: 100%;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 36px 36px;
    content: "";
    mask-image: linear-gradient(90deg, transparent, #000);
}

.company_hero .page_hero_inner {
    position: relative;
    z-index: 1;
}

.company_hero_actions {
    margin-top: 32px;
}

.company_hero .button_secondary,
.company_hero .button_secondary:active {
    border-color: rgba(255, 255, 255, 0.72);
    color: #ffffff;
}

.company_hero .button_secondary:hover,
.company_hero .button_secondary:focus-visible {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.company_story {
    background: #ffffff;
}

.company_story_inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(280px, 2fr);
    grid-template-rows: auto auto;
    column-gap: 72px;
    align-items: center;
}

.company_story_content {
    max-width: 720px;
    grid-row: 1;
    grid-column: 1;
}

.company_story_heading h2,
.company_sovereignty h2 {
    margin: 0;
    color: #153c50;
    font-size: clamp(2.2rem, 4.7vw, 4.1rem);
    font-weight: 100;
    letter-spacing: -0.04em;
    line-height: 1.03;
}

.company_story_copy {
    max-width: 720px;
    margin-top: 16px;
}

.company_story_copy p,
.company_sovereignty_copy > p:not(.eyebrow) {
    margin: 0 0 18px;
    color: #536572;
    font-size: 1.08rem;
    line-height: 1.72;
}

.company_story_copy p:last-child,
.company_sovereignty_copy > p:last-child {
    margin-bottom: 0;
}

.company_portrait {
    display: contents;
}

.company_portrait img {
    display: block;
    width: min(100%, 390px);
    height: auto;
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
    border-radius: 10px;
}

.company_portrait figcaption {
    width: min(100%, 390px);
    box-sizing: border-box;
    padding: 18px 2px 0;
    grid-row: 2;
    grid-column: 2;
    justify-self: end;
    color: #536572;
    line-height: 1.4;
}

.company_portrait figcaption strong,
.company_portrait figcaption span {
    display: block;
}

.company_portrait figcaption strong {
    margin-bottom: 3px;
    color: #153c50;
    font-size: 1.2rem;
}

.company_values {
    background: #eef4f7;
}

.company_value_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.company_value_grid article {
    min-height: 260px;
    padding: 34px;
    border: 1px solid #d6e3e9;
    border-radius: 10px;
    background: #ffffff;
}

.company_value_icon {
    display: flex;
    width: 62px;
    height: 62px;
    margin-bottom: 28px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #eef4f7;
}

.company_value_icon img {
    width: 31px;
    height: 31px;
    object-fit: contain;
    opacity: 0.78;
}

.company_value_grid h3 {
    margin: 0 0 14px;
    color: #153c50;
    font-size: 1.5rem;
}

.company_value_grid p {
    margin: 0;
    color: #536572;
    line-height: 1.65;
}

.company_sovereignty {
    background: #ffffff;
}

.company_sovereignty_inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 84px;
    align-items: center;
}

.company_sovereignty h2 {
    max-width: 720px;
    margin-bottom: 28px;
}

.company_sovereignty_points {
    margin: 0;
    padding: 0;
    border-top: 1px solid #d8e4e9;
    list-style: none;
}

.company_sovereignty_points li {
    position: relative;
    padding: 20px 12px 20px 36px;
    border-bottom: 1px solid #d8e4e9;
    color: #153c50;
    font-size: 1.08rem;
    font-weight: 700;
}

.company_sovereignty_points li::before {
    position: absolute;
    top: 20px;
    left: 4px;
    color: #1685b4;
    content: "\2713";
}

@media screen and (max-width: 900px) {
    .company_story_inner {
        column-gap: 48px;
    }

    .company_value_grid {
        grid-template-columns: 1fr;
    }

    .company_value_grid article {
        min-height: 0;
    }

    .company_sovereignty_inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

@media screen and (max-width: 700px) {
    .company_story_inner {
        grid-template-areas:
            "heading"
            "portrait"
            "copy";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 22px;
        align-items: start;
    }

    .company_story_content {
        display: contents;
    }

    .company_story_heading {
        grid-area: heading;
    }

    .company_story_copy {
        margin-top: 4px;
        grid-area: copy;
    }

    .company_portrait {
        display: block;
        width: 100%;
        max-width: 390px;
        margin: 0;
        grid-area: portrait;
        justify-self: start;
    }

    .company_portrait img,
    .company_portrait figcaption {
        width: 100%;
    }

    .company_value_grid article {
        padding: 28px;
    }

}
