.ckw-news-carousel {
    --ck-blue: #001A48;
    --ck-sky: #3399FF;
    --ck-muted: #667085;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.ckw-carousel-wrapper {
    position: relative;
    border-radius: 16px;
}

.ckw-carousel-inner {
    overflow: hidden;
    border-radius: 16px;
}

.ckw-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.ckw-article-card {
    flex: 0 0 33.333%;
    padding: 12px;
    min-height: 380px;
    display: flex;
}

.ckw-article-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eceff4;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
    transition: transform 0.25s;
    cursor: pointer;
    flex: 1;
}

.ckw-article-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.ckw-article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.ckw-article-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.ckw-article-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ck-blue);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.ckw-article-excerpt {
    color: var(--ck-muted);
    font-size: .95rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.ckw-article-meta-carousel {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ckw-article-date {
    font-size: .85rem;
    color: #6b7280;
    background: #f3f6fb;
    border-radius: 999px;
    padding: 6px 10px;
}

.ckw-read-more {
    font-weight: 700;
    text-decoration: none;
    color: var(--ck-sky);
    transition: color 0.3s ease;
}

.ckw-read-more:hover {
    color: var(--ck-blue);
}

.ckw-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
}

.ckw-carousel-nav.prev {
    left: -18px;
}

.ckw-carousel-nav.next {
    right: -18px;
}

.ckw-carousel-nav:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.ckw-carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.ckw-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: block;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.ckw-indicator.active {
    background: var(--ck-sky);
    border-color: var(--ck-sky);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(51, 153, 255, 0.3);
}

.ckw-indicator:hover {
    background: #cbd5e1;
    transform: scale(1.1);
}

.ckw-loading {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ckw-news-loader {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--ck-blue);
}

.ckw-loader-ring {
    position: absolute;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 4px solid #eef2f7;
    border-top-color: var(--ck-sky);
    animation: ckw-spin 1.1s linear infinite;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 6px 18px rgba(0,0,0,.08));
}

.ckw-loader-newspaper {
    color: var(--ck-sky);
    animation: ckw-float 2.6s ease-in-out infinite;
    z-index: 1;
}

.ckw-loader-text .ckw-label {
    display: block;
    font-weight: 700;
    color: var(--ck-blue);
    margin-top: 6px;
}

.ckw-loader-text .ckw-keyword {
    display: inline-block;
    margin-top: 2px;
    padding: .25rem .55rem;
    border-radius: 999px;
    background: #f3f6fb;
    color: #334155;
    font-size: .9rem;
    animation: ckw-pop 600ms ease;
}

.ckw-dots {
    display: flex;
    gap: 6px;
    margin-top: 2px;
}

.ckw-dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ck-sky);
    opacity: .35;
    animation: ckw-blink 1.4s infinite ease-in-out;
}

.ckw-dots i:nth-child(2) { animation-delay: .2s; }
.ckw-dots i:nth-child(3) { animation-delay: .4s; }

@keyframes ckw-spin {
    to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes ckw-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes ckw-blink {
    0%, 80%, 100% { opacity: .35; }
    40% { opacity: 1; }
}

@keyframes ckw-pop {
    0% { transform: scale(.9); opacity: .6; }
    100% { transform: scale(1); opacity: 1; }
}

.ckw-error {
    padding: 20px;
    text-align: center;
    background: #ffeceb;
    border-radius: 10px;
    color: #df0001;
}

@media (max-width: 1024px) {
    .ckw-article-card { flex: 0 0 50%; }
}

@media (max-width: 768px) {
    .ckw-article-card { flex: 0 0 100%; }
    .ckw-carousel-nav {
        width: 40px;
        height: 40px;
    }
    .ckw-carousel-nav.prev { left: -12px; }
    .ckw-carousel-nav.next { right: -12px; }
    .ckw-indicator {
        width: 12px;
        height: 12px;
    }
}
