/* YuManSe News Styles - hhx-library.com 2025 */

.yumanse-news-layout {
    --yumanse-news-accent: #ec4899;
    --yumanse-news-highlight: #8b5cf6;
}

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

.yumanse-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(236, 72, 153, 0.35);
}

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

.yumanse-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.25);
}

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

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

.yumanse-tab-active {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(236, 72, 153, 0.5);
}

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

.yumanse-newsletter-signup:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(236, 72, 153, 0.3);
}

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

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

.yumanse-news-card:nth-child(1) { animation-delay: 0.2s; }
.yumanse-news-card:nth-child(2) { animation-delay: 0.4s; }
.yumanse-news-card:nth-child(3) { animation-delay: 0.6s; }