.who-we-are {
    margin: 80px 0;
}

.who-we-are__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 24px;
}

.who-we-are__subtitle {
    margin-bottom: 15px;
}

.who-we-are__title {
    max-width: 445px;
    margin-bottom: 40px;
}

.who-we-are__content {
    max-width: 554px;
    font-size: 20px;
    line-height: 145%;
    font-weight: 300;
    color: #000000;
}

.who-we-are__right {
    padding: 0 66px;
}

.who-we-are__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 98px 72px;
}

.who-we-are__stat-item {
    text-align: left;
}

.who-we-are__stat-item:nth-child(1) {
    position: relative;
}

.who-we-are__stat-item:nth-child(1):after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #D9D9D9;
    top: 0;
    right: -25px;
}

.who-we-are__stat-item:nth-child(3) {
    position: relative;
}

.who-we-are__stat-item:nth-child(3):after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #D9D9D9;
    top: 0;
    right: -25px;
}

.stat-number {
    margin-bottom: 8px;
    font-family: 'Satoshi', sans-serif;
    font-size: 52px;
    line-height: 121%;
    font-weight: 700;
    text-align: center;
    color: #AA791E;
}

.stat-text {
    font-size: 20px;
    line-height: 145%;
    font-weight: 300;
    text-align: center;
    color: #000000;
}

.who-we-are__stats {
    position: relative;
}

.who-we-are__stats::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 1px;
    width: 100%;
    background: #D9D9D9;
    transform: translateY(-50%);
    z-index: -1;
}

@media (max-width: 1024px) {
    .who-we-are {
        margin: 36px 0;
    }

    .who-we-are__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .who-we-are__title {
        max-width: 100%;
        margin-bottom: 9px;
    }

    .who-we-are__subtitle {
        margin-bottom: 9px;
    }

    .who-we-are__content {
        max-width: 95%;
        font-size: 14px;
        line-height: 16px;
    }

    .who-we-are__stats {
        grid-template-columns: 1fr 1fr;
        gap: 52px 42px;
    }

    .who-we-are__right {
        padding: 0;
    }

    .stat-number {
        margin-bottom: 8px;
        font-family: 'Satoshi', sans-serif;
        font-size: 24px;
        line-height: 121%;
        font-weight: 700;
        text-align: center;
        color: #AA791E;
    }

    .stat-text {
        font-size: 14px;
    }
}