.ky-sps-wrap {
    position: relative;
    width: 100%;
}

.ky-sps-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 12px 4px 22px;
    scrollbar-width: thin;
}

.ky-sps-card {
    flex: 0 0 360px;
    max-width: 360px;
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 8px 24px rgba(16, 32, 55, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ky-sps-card:hover {
    transform: translateY(-5px);
    border-color: #2F7FD8;
    box-shadow: 0 16px 38px rgba(16, 32, 55, .14);
}

.ky-sps-image-area {
    position: relative;
}

.ky-sps-image {
    display: block;
    width: 100%;
    height: 178px;
    overflow: hidden;
    background: #eef3f8;
}

.ky-sps-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ky-sps-image-placeholder {
    background: linear-gradient(135deg, #edf3fb, #dfeaf7);
}

.ky-sps-category {
    position: absolute;
    left: 20px;
    bottom: -16px;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 14px;
    border-radius: 6px;
    background: #2F7FD8;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(47, 127, 216, .28);
    z-index: 2;
}

.ky-sps-content {
    padding: 30px 22px 22px;
}

.ky-sps-date {
    margin: 0 0 12px;
    color: #6b7788;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

.ky-sps-date-icon {
    font-size: 13px;
    opacity: .9;
}

.ky-sps-title {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

.ky-sps-title a {
    color: #172033;
    text-decoration: none;
}

.ky-sps-title a:hover {
    color: #2F7FD8;
}

.ky-sps-excerpt {
    margin: 0 0 16px;
    color: #667386;
    font-size: 15px;
    line-height: 1.55;
}

.ky-sps-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2F7FD8;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
}

.ky-sps-read-more:hover {
    text-decoration: none;
    filter: brightness(.92);
}

.ky-sps-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #dce6f3;
    background: #ffffff;
    color: #2F7FD8;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(16, 32, 55, .12);
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.ky-sps-prev {
    left: -16px;
}

.ky-sps-next {
    right: -16px;
}

.ky-sps-nav:hover {
    background: #2F7FD8;
    color: #ffffff;
    border-color: #2F7FD8;
    transform: translateY(-50%) scale(1.04);
}

@media (max-width: 768px) {
    .ky-sps-card {
        flex-basis: 84%;
        max-width: 84%;
    }

    .ky-sps-prev {
        left: 4px;
    }

    .ky-sps-next {
        right: 4px;
    }
}
