.k-sps-widget {
    --k-sps-primary: #2a8e24;
    --k-sps-primary-dark: #166534;
    --k-sps-primary-bright: #32b32c;
    --k-sps-gradient-start: #0b9e38;
    --k-sps-gradient-end: #004434;
}

.k-sps-box {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.25s ease;
}

.k-sps-box:hover {
    box-shadow: 0 4px 16px rgba(11, 158, 56, 0.15);
}

.k-sps-heading-bar {
    padding: 14px 18px;
    background: linear-gradient(270.34deg, var(--k-sps-gradient-start) -25.32%, var(--k-sps-gradient-end) 93.54%);
}

.k-sps-heading {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    font-family: 'SVN Circular', sans-serif;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.k-sps-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.k-sps-item {
    margin: 0;
    border-left: 3px solid transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.k-sps-item.k-sps-empty {
    padding: 12px 18px;
    font-size: 14px;
    color: #717171;
    font-style: italic;
}

.k-sps-item.k-sps-empty::before,
.k-sps-item.k-sps-empty .k-sps-link::before {
    display: none;
}

.k-sps-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.k-sps-item:hover {
    background-color: rgba(42, 142, 36, 0.06);
}

.k-sps-item.is-active {
    background-color: rgba(50, 179, 44, 0.1);
    border-left-color: var(--k-sps-primary-bright);
}

.k-sps-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px 12px 15px;
    font-size: 15px;
    line-height: 1.45;
    font-family: 'SVN Circular', sans-serif;
    font-weight: 500;
    color: #121212;
    text-decoration: none;
    transition: color 0.2s ease;
}

.k-sps-link::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--k-sps-gradient-start), var(--k-sps-gradient-end));
    opacity: 0.85;
}

.k-sps-item.is-active .k-sps-link::before {
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(50, 179, 44, 0.35);
}

.k-sps-link:hover {
    color: var(--k-sps-primary);
}

.k-sps-item.is-active .k-sps-link {
    color: var(--k-sps-primary-dark);
    font-weight: 600;
}

@media (max-width: 767px) {
    .k-sps-heading {
        font-size: 14px;
    }

    .k-sps-link {
        font-size: 14px;
        padding: 10px 14px 10px 12px;
    }
}
