/* BLOCK: Who We Are */

.block-who-we-are .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.block-who-we-are .text-content {
    flex-basis: 48%;
    font-size: var(--font-17-15);
}

.block-who-we-are .text-content > * {
    margin-block: 0 2.5rem;
}

.block-who-we-are .text-content > :is(h1, h2, h3, .h1, .h2, .h3) {
    margin-bottom: 3.125rem;
}

.block-who-we-are .text-content > :last-child {
    margin-bottom: 0 !important;
}

.block-who-we-are .cta-buttons {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.block-who-we-are .cta-buttons:not(:first-child) {
    margin-top: 3.125rem;
}

.block-who-we-are .items-wrapper {
    flex-basis: 40%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 1.875rem;
}

.block-who-we-are .items-wrapper .item {
    background-color: #F3F4F7;
    padding: 1.25rem 1.25rem 1.875rem 1.875rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--c-primary);
    border-radius: 4px;
}

.block-who-we-are .items-wrapper .item:nth-child(2n) {
    transform: translateY(3.75rem);
}

.block-who-we-are .items-wrapper .item-icon {
    align-self: flex-end;
    width: 100%;
    max-width: 1.25rem;
    height: 100%;
    max-height: 1.25rem;
    margin-bottom: 0.75rem;
}

.block-who-we-are .items-wrapper .item-value {
    margin-top: auto;
    color: currentColor;
}

.block-who-we-are .items-wrapper .item-description {
    color: var(--c-secondary);
    font-size: var(--font-21-13);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-top: 0.9375rem;
    max-width: 65%;
}

@media screen and (width <= 1200px) {
    .block-who-we-are .text-content,
    .block-who-we-are .items-wrapper {
        flex-basis: 49%;
    }
}

@media screen and (width <= 920px) {
    .block-who-we-are .content-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 3.75rem;
    }
    .block-who-we-are .text-content > :not(:last-child) {
        margin-bottom: 1.5rem;
    }
    .block-who-we-are .text-content > :is(h1, h2, h3, .h1, .h2, .h3) {
        margin-bottom: 2.5rem;
    }
    .block-who-we-are .cta-buttons:not(:first-child) {
        margin-top: 2.5rem;
    }
    .block-who-we-are .items-wrapper {
        gap: 0.75rem;
    }
    .block-who-we-are .items-wrapper .item:nth-child(2n) {
        transform: translateY(1.5rem);
    }
    .block-who-we-are .items-wrapper .item {
        padding: 0.75rem 0.75rem 1.25rem 1.25rem;
    }
    .block-who-we-are .items-wrapper .item-icon {
        margin-bottom: 0.125rem;
    }
    .block-who-we-are .items-wrapper .item-description {
        margin-top: 0.75rem;
    }
}