.our-story {
    color: var(--color-dark);
    padding-block: 100px;

    @media (max-width: 992px) {
        padding-block: 50px;
    }
}

.our-story__row {
    display: flex;

    @media (max-width: 992px) {
        flex-direction: column;
        gap: 20px;
    }
}

.our-story__item {
    flex: 1;

    @media (max-width: 992px) {
        flex: auto;
    }
}

.our-story__title {
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    color: var(--color-primary);

    @media (max-width: 992px) {
        font-size: 24px;
        line-height: 34px;
    }
}

.our-story__text {
    color: inherit;

    font-weight: 400;
    font-size: 20px;
    line-height: 32px;

    @media (max-width: 992px) {
        font-size: 18px;
        line-height: 30px;
    }
}

@media (min-width: 1024px) {
    .our-story {
    }
}