/* =========================
   WRAP
========================= */
.kn-wrap {
    background: #1c1c20;
    min-height: 100vh;
}

/* =========================
   HERO
========================= */
.kn-hero {
    background: #1c1c20;
    padding: 56px 24px 48px;
    text-align: center;
}

.kn-hero__inner {
    max-width: 760px;
    margin: 0 auto;
}

.kn-hero__step {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 40px;
    border: 1px solid rgba(167, 139, 250, 0.3);
    background: rgba(167, 139, 250, 0.08);
    font-size: 12px;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.kn-hero__title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 16px;
}

.kn-hero__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
    margin-bottom: 40px;
}

/* 3가지 피처 카드 */
.kn-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 680px;
    margin: 0 auto;
}

.kn-feature {
    background: #26272b;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
}

.kn-feature__icon {
    width: 44px;
    height: 44px;
    background: rgba(167, 139, 250, 0.1);
    color: #a78bfa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.kn-feature__name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.kn-feature__desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

/* =========================
   탭 네비게이션
========================= */
.kn-tab-wrap {
    background: #26272b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0 24px;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.kn-tab-wrap__inner {
    max-width: 1300px;
    margin: 0 auto;
}

.kn-tabs {
    display: flex;
    gap: 4px;
    padding: 8px 0;
}

.kn-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.kn-tab:hover:not(.kn-tab--active) {
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.05);
}

.kn-tab--active {
    background: rgba(167, 139, 250, 0.12);
    color: #a78bfa;
}

/* =========================
   바디 레이아웃 (main + sidebar)
========================= */
.kn-body {
    padding: 36px 24px 80px;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    align-items: start;
}

/* =========================
   탭 콘텐츠 영역
========================= */
.kn-main-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.kn-tab-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.kn-tab-content--hidden {
    display: none;
}

/* 키워드 입력 박스 */
.kn-form-box {
    background: #26272b;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    overflow: hidden;
}

.kn-form-box__title,
.kn-form-box__desc,
.kn-keyword-list {
    padding-left: 28px;
    padding-right: 28px;
}

.kn-keyword-done {
    margin-left: 28px;
    margin-right: 28px;
    margin-bottom: 28px;
}

/* 커버 이미지 */
.kn-cover {
    position: relative;
    height: 160px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.06);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    transition: background 0.2s;
}

.kn-cover:hover {
    background: rgba(255, 255, 255, 0.1);
}

.kn-cover__input {
    display: none;
}

.kn-cover__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    font-weight: 500;
    pointer-events: none;
}

.kn-cover--has-image .kn-cover__placeholder {
    display: none;
}

.kn-cover__img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kn-cover--has-image .kn-cover__img {
    display: block;
}

.kn-cover__remove {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.55);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.kn-cover--has-image .kn-cover__remove {
    display: flex;
}

.kn-cover__remove:hover {
    background: rgba(248, 113, 113, 0.75);
}

.kn-form-box__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    padding-top: 28px;
}

.kn-form-box__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
    line-height: 1.6;
}

.kn-keyword-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kn-keyword {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kn-keyword__label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.kn-keyword__num {
    color: #a78bfa;
    font-weight: 700;
}

.kn-keyword__row {
    display: flex;
    align-items: center;
    gap: 0;
    background: #1e1f24;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: border-color 0.2s;
}

.kn-keyword__row:focus-within {
    border-color: rgba(167, 139, 250, 0.5);
}

.kn-keyword__input {
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #fff;
    outline: none;
    flex: 1;
    min-width: 0;
}

.kn-keyword__input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.kn-keyword__clear {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    transition: color 0.15s, background 0.15s;
}

.kn-keyword__clear:hover {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.6);
}

/* 완료 메시지 */
.kn-keyword-done {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(167, 139, 250, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.25);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.kn-keyword-done--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.kn-keyword-done__icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: rgba(167, 139, 250, 0.2);
    color: #a78bfa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.kn-keyword-done strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #a78bfa;
    margin-bottom: 3px;
}

.kn-keyword-done p {
    font-size: 12px;
    color: rgba(167, 139, 250, 0.7);
    line-height: 1.5;
}

/* Kano 모델 설명 */
.kn-explain {
    background: #26272b;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 28px;
}

.kn-explain__head {
    margin-bottom: 20px;
}

.kn-explain__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.kn-explain__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.kn-explain__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.kn-type {
    padding: 16px;
    border-radius: 12px;
}

.kn-type__dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.kn-type__name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.4;
}

.kn-type__desc {
    font-size: 12px;
    line-height: 1.55;
}

.kn-type--mustbe   { background: rgba(34, 197, 94, 0.08); }
.kn-type--mustbe .kn-type__dot  { background: #22c55e; }
.kn-type--mustbe .kn-type__name { color: #22c55e; }
.kn-type--mustbe .kn-type__desc { color: rgba(34, 197, 94, 0.65); }

.kn-type--onedim   { background: rgba(96, 165, 250, 0.08); }
.kn-type--onedim .kn-type__dot  { background: #60a5fa; }
.kn-type--onedim .kn-type__name { color: #60a5fa; }
.kn-type--onedim .kn-type__desc { color: rgba(96, 165, 250, 0.65); }

.kn-type--attractive { background: rgba(167, 139, 250, 0.08); }
.kn-type--attractive .kn-type__dot  { background: #a78bfa; }
.kn-type--attractive .kn-type__name { color: #a78bfa; }
.kn-type--attractive .kn-type__desc { color: rgba(167, 139, 250, 0.65); }

.kn-type--indiff   { background: rgba(255, 255, 255, 0.04); }
.kn-type--indiff .kn-type__dot  { background: #6b7280; }
.kn-type--indiff .kn-type__name { color: #9ca3af; }
.kn-type--indiff .kn-type__desc { color: rgba(255, 255, 255, 0.3); }

/* =========================
   사이드바 (오른쪽)
========================= */
.kn-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 130px;
}

/* 설문 설정 카드 */
.kn-settings {
    background: #26272b;
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 20px;
    padding: 24px;
}

.kn-settings__title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.kn-settings__sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 24px;
}

.kn-settings__field {
    margin-bottom: 18px;
}

.kn-settings__field-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.kn-settings__count {
    font-size: 22px;
    font-weight: 800;
    color: #a78bfa;
}

/* 슬라이더 */
.kn-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(
        to right,
        #a78bfa 0%,
        #a78bfa var(--pct, 17%),
        rgba(255, 255, 255, 0.1) var(--pct, 17%),
        rgba(255, 255, 255, 0.1) 100%
    );
    outline: none;
    cursor: pointer;
    display: block;
}

.kn-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #a78bfa;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.2);
}

.kn-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #a78bfa;
    cursor: pointer;
    border: none;
    box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.2);
}

.kn-settings__range-label {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 10px;
}

/* 예상 비용/시간 */
.kn-settings__estimate {
    background: #1e1f24;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 18px;
}

.kn-settings__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.kn-settings__row--mt {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.kn-settings__price {
    font-size: 18px;
    font-weight: 800;
    color: #a78bfa;
}

.kn-settings__hint {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 4px;
}

.kn-settings__time {
    font-size: 14px;
    font-weight: 700;
    color: #a78bfa;
}

/* 무료/유료 상태 표시 */
.kn-pay-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 18px;
    transition: background 0.25s, border-color 0.25s;
}

.kn-pay-status__dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: background 0.25s;
}

.kn-pay-status__label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.kn-pay-status__desc {
    font-size: 12px;
    line-height: 1.5;
}

.kn-pay-status--free {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
}
.kn-pay-status--free .kn-pay-status__dot   { background: #22c55e; }
.kn-pay-status--free .kn-pay-status__label { color: #22c55e; }
.kn-pay-status--free .kn-pay-status__desc  { color: rgba(34, 197, 94, 0.65); }

.kn-pay-status--paid {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.kn-pay-status--paid .kn-pay-status__dot   { background: #6b7280; }
.kn-pay-status--paid .kn-pay-status__label { color: rgba(255, 255, 255, 0.45); }
.kn-pay-status--paid .kn-pay-status__desc  { color: rgba(255, 255, 255, 0.25); }

/* CTA 버튼 */
.kn-settings__btn {
    width: 100%;
    padding: 14px;
    background: #a78bfa;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.kn-settings__btn:hover {
    background: #9061f9;
}

.kn-settings__btn:disabled,
.kn-settings__btn--disabled {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.25);
    cursor: not-allowed;
}
.kn-settings__btn:disabled:hover,
.kn-settings__btn--disabled:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* 설문 구성 카드 */
.kn-composition {
    background: #26272b;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 22px 24px;
}

.kn-composition__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.kn-composition__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kn-composition__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.kn-composition__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a78bfa;
    flex-shrink: 0;
}

/* =========================
   미리보기 빈 상태
========================= */
.kn-preview-empty {
    text-align: center;
    padding: 80px 24px;
}

.kn-preview-empty__icon {
    width: 64px;
    height: 64px;
    background: rgba(167, 139, 250, 0.1);
    color: #a78bfa;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.kn-preview-empty p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.kn-preview-empty__btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(167, 139, 250, 0.4);
    color: #a78bfa;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.kn-preview-empty__btn:hover {
    background: rgba(167, 139, 250, 0.1);
}

/* 미리보기 헤더 */
.kn-preview-head {
    margin-bottom: 24px;
}

.kn-preview-head__title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.kn-preview-head__desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* =========================
   설문 미리보기 목록
========================= */
.kn-preview-wrap {
    width: 100%;
}

.kn-preview-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kn-q-group {
    background: #26272b;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    overflow: hidden;
}

.kn-q-group__head {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.kn-q-group__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #a78bfa;
    background: rgba(167, 139, 250, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.2);
    padding: 4px 12px;
    border-radius: 40px;
}

/* 질문 블록 */
.kn-question {
    padding: 20px 20px 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid transparent;
}

.kn-question:last-child {
    border-bottom: none;
}

.kn-question--pos {
    border-left-color: #22c55e;
}

.kn-question--neg {
    border-left-color: #f87171;
}

.kn-question__type {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.kn-question--pos .kn-question__type { color: #22c55e; }
.kn-question--neg .kn-question__type { color: #f87171; }

.kn-question__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin-bottom: 16px;
}

.kn-question__text em {
    color: #a78bfa;
    font-style: normal;
    font-weight: 700;
}

/* 라디오 옵션 세로 목록 */
.kn-options {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kn-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.15s;
}

.kn-option label:hover {
    color: rgba(255, 255, 255, 0.9);
}

.kn-option input[type="radio"] {
    accent-color: #a78bfa;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

/* =========================
   제품/서비스 설명 박스
========================= */
.kn-product-desc {
    padding: 24px 28px 24px;
}

.kn-product-desc__label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
    letter-spacing: .02em;
}

.kn-product-desc__req {
    color: #a78bfa;
    margin-left: 2px;
}

.kn-product-desc__textarea {
    display: block;
    width: 100%;
    resize: vertical;
    min-height: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(167, 139, 250, 0.3);
    border-radius: 10px;
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.7;
    outline: none;
    transition: border-color .2s;
    font-family: inherit;
}

.kn-product-desc__textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.kn-product-desc__textarea:focus {
    border-color: rgba(167, 139, 250, 0.65);
}

/* =========================
   생성 로딩 모달
========================= */
.kn-gen-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
}

.kn-gen-modal--open {
    display: flex;
}

.kn-gen-modal__box {
    background: #26272b;
    border: 1px solid rgba(167, 139, 250, 0.25);
    border-radius: 24px;
    padding: 40px 32px 36px;
    width: 320px;
    text-align: center;
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.55);
    animation: knGenBoxIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes knGenBoxIn {
    from { opacity: 0; transform: scale(0.88) translateY(14px); }
    to   { opacity: 1; transform: none; }
}

.kn-gen-modal__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(167, 139, 250, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.3);
    color: #a78bfa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: knIconPulse 1.5s ease-in-out infinite;
}

@keyframes knIconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(167, 139, 250, 0.35); }
    50%       { box-shadow: 0 0 0 12px rgba(167, 139, 250, 0); }
}

.kn-gen-modal__title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.kn-gen-modal__msg {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
    min-height: 1.4em;
    line-height: 1.55;
    transition: opacity 0.3s;
}

.kn-gen-modal__track {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 99px;
    height: 6px;
    overflow: hidden;
}

.kn-gen-modal__bar {
    height: 100%;
    width: 0%;
    border-radius: 99px;
    background: linear-gradient(90deg, #a78bfa, #c4b5fd);
    transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(167, 139, 250, 0.5);
}

/* =========================
   반응형
========================= */
@media (max-width: 768px) {
    .kn-hero {
        padding: 40px 16px 36px;
    }

    .kn-hero__title {
        font-size: 26px;
    }

    .kn-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .kn-tab-wrap {
        top: 0;
    }

    .kn-body {
        padding: 24px 16px 60px;
        grid-template-columns: 1fr;
    }

    .kn-sidebar {
        position: static;
    }

    .kn-explain__grid {
        grid-template-columns: 1fr;
    }

    .kn-scale {
        gap: 6px;
    }

    .kn-scale__item {
        padding: 7px 12px;
        font-size: 12px;
    }
}
