.kl-segment-switch {
    border-bottom: 1px solid #d7ded7;
    background: #fbfaf7;
    font-family: Manrope, sans-serif;
}

.kl-segment-switch-inner {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    width: min(100% - 48px, 1290px);
    margin: 0 auto;
}

.kl-segment-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    border-bottom: 3px solid transparent;
    color: #607069;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.kl-segment-link:hover,
.kl-segment-link:focus-visible,
.kl-segment-link.is-active {
    border-bottom-color: #008b68;
    color: #123b31;
}

.kl-segment-link:focus-visible {
    outline: 2px solid #008b68;
    outline-offset: 2px;
}

@media (max-width: 600px) {
    .kl-segment-switch-inner {
        gap: 18px;
        width: min(100% - 32px, 1290px);
    }

    .kl-segment-link {
        min-height: 38px;
        font-size: 12px;
    }
}
