/* Xiaolan News Styles - jxaolanshi.com 2025 */

.xiaolan-news-layout {
    --xiaolan-news-accent: #2563eb;
    --xiaolan-news-highlight: #06b6d4;
}

.xiaolan-featured-card {
    backdrop-filter: blur(18px);
    transition: all 0.6s ease;
}

.xiaolan-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(37, 99, 235, 0.35);
}

.xiaolan-news-card {
    transition: all 0.5s ease;
}

.xiaolan-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
}

.xiaolan-tab-btn {
    transition: all 0.4s ease;
}

.xiaolan-tab-btn:hover {
    transform: translateY(-2px);
}

.xiaolan-tab-active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(37, 99, 235, 0.5);
}

.xiaolan-newsletter-signup {
    backdrop-filter: blur(15px);
    transition: all 0.5s ease;
}

.xiaolan-newsletter-signup:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
}

@keyframes xiaolan-news-fade-in {
    0% { opacity: 0; transform: translateY(35px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.xiaolan-news-card {
    animation: xiaolan-news-fade-in 1s ease-out forwards;
}

.xiaolan-news-card:nth-child(1) { animation-delay: 0.2s; }
.xiaolan-news-card:nth-child(2) { animation-delay: 0.4s; }
.xiaolan-news-card:nth-child(3) { animation-delay: 0.6s; }
.xiaolan-news-card:nth-child(4) { animation-delay: 0.8s; }
.xiaolan-news-card:nth-child(5) { animation-delay: 1.0s; }
.xiaolan-news-card:nth-child(6) { animation-delay: 1.2s; }