/* blog-menu.html — hero / banner */

#banner-section.blog-hero.services-hero,
#banner-section.blog-hero.page-hero {
    background: linear-gradient(160deg, #ffffff 0%, #f5f3ff 28%, #fdf2f8 62%, #f8fafc 100%);
}

#banner-section.blog-hero.services-hero::before,
#banner-section.blog-hero.page-hero::before {
    background:
        radial-gradient(circle at 14% 38%, rgba(99, 102, 241, 0.16) 0%, transparent 42%),
        radial-gradient(circle at 88% 22%, rgba(236, 72, 153, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 50% 92%, rgba(139, 92, 246, 0.1) 0%, transparent 38%);
}

#banner-section.blog-hero.services-hero::after,
#banner-section.blog-hero.page-hero::after {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.14) 0%, transparent 70%);
}

html.dark #banner-section.blog-hero.services-hero,
html.dark #banner-section.blog-hero.page-hero {
    background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 35%, #500724 68%, #0f172a 100%);
}

html.dark #banner-section.blog-hero.services-hero::before,
html.dark #banner-section.blog-hero.page-hero::before {
    background:
        radial-gradient(circle at 14% 38%, rgba(129, 140, 248, 0.2) 0%, transparent 42%),
        radial-gradient(circle at 88% 22%, rgba(244, 114, 182, 0.14) 0%, transparent 40%),
        radial-gradient(circle at 50% 92%, rgba(167, 139, 250, 0.12) 0%, transparent 38%);
}

.blog-hero .services-hero-badge,
.blog-hero .page-hero-badge {
    color: #4f46e5;
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.28);
}

.blog-hero .services-hero-badge::before,
.blog-hero .page-hero-badge::before {
    background: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.35);
}

html.dark .blog-hero .services-hero-badge,
html.dark .blog-hero .page-hero-badge {
    color: #c7d2fe;
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(165, 180, 252, 0.35);
}

.blog-hero .services-hero-title,
.blog-hero .page-hero-title {
    background: linear-gradient(135deg, #0f172a 0%, #4f46e5 42%, #db2777 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

html.dark .blog-hero .services-hero-title,
html.dark .blog-hero .page-hero-title {
    background: linear-gradient(135deg, #f8fafc 0%, #c7d2fe 40%, #f9a8d4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-hero .hero-stat-value,
.blog-hero .page-hero-stat-value {
    color: #4f46e5;
}

html.dark .blog-hero .hero-stat-value,
html.dark .blog-hero .page-hero-stat-value {
    color: #c7d2fe;
}

.blog-hero-notice {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.45rem 0.9rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6b7280;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid #e5e7eb;
    border-radius: 999px;
}

html.dark .blog-hero-notice {
    color: #94a3b8;
    background: rgba(30, 41, 59, 0.65);
    border-color: #334155;
}

.blog-hero-notice__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
    animation: blogHeroPulse 2s ease-in-out infinite;
}

@keyframes blogHeroPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(0.88); }
}
