.tb-split-full {
    background: #ffffff;
}

.tb-split-full__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tb-split-full__panel {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 72px;
}

.tb-split-full__panel--left {
    padding-left: max(16px, calc((100vw - 1200px) / 2));
    background: #111111;
    color: #ffffff;
}

.tb-split-full__panel--right {
    padding-right: max(16px, calc((100vw - 1200px) / 2));
    background: #f7f7f7;
    color: #111111;
}

.tb-split-full__title {
    max-width: 560px;
    margin: 0;
    font-size: clamp(30px, 3.4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: inherit;
}

.tb-split-full__line {
    display: block;
    width: 140px;
    height: 4px;
    margin-top: 18px;
    border-radius: 999px;
    background: #fc7700;
}

.tb-split-full__text {
    max-width: 620px;
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.62;
    color: inherit;
}

.tb-split-full__text > :first-child {
    margin-top: 0;
}

.tb-split-full__text > :last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .tb-split-full__grid {
        grid-template-columns: 1fr;
    }

    .tb-split-full__panel,
    .tb-split-full__panel--right {
        min-height: 0;
        padding: 56px 24px;
    }

    .tb-split-full__text {
        font-size: 17px;
    }
}

.tb-split-full__button {
    display: inline-flex;
    width: fit-content;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 0 24px;
    border-radius: 10px;
    background: #fc7700;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.tb-split-full__button:hover {
    color: #ffffff;
    background: #e96d00;
}
