body { font-family: 'Noto Sans KR', sans-serif; }

.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Main list: featured section */
.featured-news-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid #dbeafe;
    background: linear-gradient(180deg, #f8fbff 0%, #eff6ff 100%);
}

.featured-news-section-title {
    font-size: 13px;
    font-weight: 800;
    color: #1d4ed8;
    letter-spacing: 0.02em;
}

.featured-news-section-note {
    font-size: 11px;
    font-weight: 700;
    color: #334155;
    background: #ffffff;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 2px 7px;
}

.featured-news-divider {
    height: 1px;
    margin: 6px 10px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.35) 50%, rgba(37, 99, 235, 0.08) 100%);
}

.featured-news-item {
    border-left: 3px solid #60a5fa;
    background: linear-gradient(90deg, rgba(239, 246, 255, 0.75) 0%, rgba(255, 255, 255, 0) 28%);
}

.featured-news-item.is-drop-target {
    outline: 2px solid rgba(59, 130, 246, 0.35);
    outline-offset: -2px;
}

.featured-news-drag-handle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    color: #94a3b8;
    margin-right: 6px;
    cursor: grab;
    flex: 0 0 auto;
}

.featured-news-item:active .featured-news-drag-handle,
.featured-news-item.is-dragging .featured-news-drag-handle {
    cursor: grabbing;
}

.featured-news-item.is-dragging {
    opacity: 0.55;
}

.dark .featured-news-section-head {
    border-bottom-color: #334155;
    background: linear-gradient(180deg, #162132 0%, #111827 100%);
}

.dark .featured-news-section-title {
    color: #bfdbfe;
}

.dark .featured-news-section-note {
    color: #cbd5e1;
    background: #0f172a;
    border-color: #334155;
}

.dark .featured-news-divider {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.08) 0%, rgba(148, 163, 184, 0.36) 50%, rgba(148, 163, 184, 0.08) 100%);
}

.dark .featured-news-item {
    border-left-color: #3b82f6;
    background: linear-gradient(90deg, rgba(30, 58, 95, 0.4) 0%, rgba(17, 24, 39, 0) 34%);
}

.dark .featured-news-drag-handle {
    color: #64748b;
}

.dark .sidebar-category-divider {
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.08) 0%, rgba(148, 163, 184, 0.42) 50%, rgba(148, 163, 184, 0.08) 100%);
}

.dark .sidebar-regular-category-title {
    color: #cbd5e1;
}

.dark .sidebar-regular-category-title::before {
    background: #64748b;
}

/* Loader */
.loader {
    border-top-color: #3B82F6;
    -webkit-animation: spinner 1.5s linear infinite;
    animation: spinner 1.5s linear infinite;
}
@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Utilities */
.glass-effect { backdrop-filter: blur(4px); }
.animate-fade-in { animation: fadeIn 0.2s ease-out; }
@keyframes fadeIn { 
    0% { opacity: 0; transform: scale(0.98); } 
    100% { opacity: 1; transform: scale(1); } 
}

/* Dark Mode Scrollbar */
.dark ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #111827; 
}
.dark ::-webkit-scrollbar-thumb {
    background-color: #374151; 
    border-radius: 4px;
}
.dark ::-webkit-scrollbar-track {
    background-color: #111827; 
}
