/* ── Reset ── */
.uxnst-container,
.uxnst-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Container ── */
.uxnst-container {
    width: 100%;
}

/* ── Tab bar ── */
.uxnst-tabs {
    display: flex;
    width: 100%;
}

.uxnst-tab-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 18px 12px 16px;
    font-size: 17px;
    color: #6B7280;
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
    background: transparent;
    overflow-wrap: break-word;
    word-break: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--uxnst-max-tab-lines, 4);
}

.uxnst-tab-btn:focus {
    outline: none;
}

.uxnst-tab-btn:hover {
    background: rgba(0, 0, 0, .03);
    border-bottom-color: rgba(0, 0, 0, .15);
}

.uxnst-tab-btn.uxnst-active {
    color: #12161F;
    border-bottom: 2px solid #18A0FB;
}

/* ── Tab panels ── */
.uxnst-panel {
    display: none;
    padding-top: 48px;
}

.uxnst-panel.uxnst-active {
    display: block;
}

/* ── Panel inner layout ── */
.uxnst-panel-inner {
    display: flex;
    flex-direction: row;
    gap: var(--uxnst-gap, 56px);
    align-items: flex-start;
}

.uxnst-start {
    flex: 0 0 25%;
    width: 25%;
    min-width: 0;
}

.uxnst-end {
    flex: 1 1 0;
    min-width: 0;
}

/* ── Start section typography ── */
.uxnst-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #12161F;
}

.uxnst-start p,
.uxnst-start li,
.uxnst-start span,
.uxnst-start div {
    font-size: 15px;
    color: #3D4A5C;
    line-height: 1.75;
}

.uxnst-cta {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #18A0FB;
    text-decoration: none;
}

/* ── End section image ── */
.uxnst-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ── Responsive ── */
@media (max-width: 899px) {
    .uxnst-panel-inner {
        flex-direction: column;
    }

    .uxnst-start,
    .uxnst-end {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 890px) {
    .uxnst-tabs {
        flex-wrap: wrap;
    }

    .uxnst-tab-btn {
        flex: 1 1 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .uxnst-tab-btn {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
