.section-header__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-header__title {
        font-size: 32px;
        line-height: 1.3;
    }
}

.section-split {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.section-split__head {
    max-width: 537px;
}

.section-split__content {
    box-sizing: border-box;
}

@media screen and (min-width: 1281px) {
    .section-split__head {
        flex: 0 0 calc(100% - 40px - 783px);
    }

    .section-split__content {
        flex: 1 1 783px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1280px) {
    .section-split__head {
        flex: 0 0 calc(100% - 40px - 663px);
    }

    .section-split__content {
        flex: 1 1 663px;
    }
}

@media screen and (max-width: 1200px) {
    .section-split {
        flex-direction: column;
    }

    .section-split__head,
    .section-split__content {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
    }
}
