.tb-ux-content {
    padding: 80px 0;
    background: #ffffff;
}

.tb-ux-content__inner {
    width: 100%;
    max-width: none;
    margin: 0;
}

.tb-ux-content__title {
    margin: 0;
    font-size: clamp(32px, 3.8vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #111111;
    text-align: center;
}

.tb-ux-content__line {
    display: block;
    width: 150px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: #fc7700;
}

.tb-ux-content__text {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.6;
    color: #555555;
    text-align: left;
    letter-spacing: normal;
    word-spacing: normal;
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

.tb-ux-content__text p {
    margin: 0;
}

.tb-ux-content__text p + p {
    margin-top: 18px;
}

@media (max-width: 767px) {
    .tb-ux-content {
        padding: 56px 0;
    }

    .tb-ux-content__title {
        text-align: left;
    }

    .tb-ux-content__line {
        margin-left: 0;
        margin-right: 0;
    }

    .tb-ux-content__text {
        font-size: 16px;
        line-height: 1.55;
        letter-spacing: normal;
        word-spacing: normal;
    }
}

.tb-ux-content__inner--with-side {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(220px, 1fr);
    gap: 40px;
    align-items: start;
}

.tb-ux-content__inner--with-side .tb-ux-content__main {
    min-width: 0;
}

.tb-ux-content__side {
    padding: 22px 20px;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.05);
}

.tb-ux-content__side-title {
    margin: 0 0 16px;
    color: #111111;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.tb-ux-content__routes {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tb-ux-content__route {
    position: relative;
    padding-left: 16px;
    color: #333333;
    font-size: 14px;
    line-height: 1.45;
}

.tb-ux-content__route::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #FC7700;
    transform: translateY(-50%);
}

@media (max-width: 900px) {
    .tb-ux-content__inner--with-side {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .tb-ux-content__side {
        padding: 20px;
    }
}

.tb-ux-content__route-link {
    color: inherit;
    text-decoration: none;
}

.tb-ux-content__route-link:hover,
.tb-ux-content__route-link:focus {
    color: #FC7700;
    text-decoration: underline;
}
