/* Intelligence Hub Page-Specific Styles */
/* Extracted from inline styles for better maintainability */

        /* FAQ Header Style for Intelligence Hub */
        .intelligence-hero .neural-faq-header p {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            margin-top: 2rem;
        }
        
        .intelligence-hero .neural-faq-header {
            text-align: center;
        }
        
        .intelligence-hero .neural-faq-header h2 {
            position: relative;
            display: inline-block;
            font-size: 5rem;
            margin-bottom: 1.5rem;
            font-weight: 200;
            letter-spacing: -0.02em;
        }
        
        .intelligence-hero .neural-faq-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--neural-orange), var(--neural-purple));
            border-radius: 2px;
        }
        
        @media (max-width: 768px) {
            .intelligence-hero .neural-faq-header h2 {
                font-size: 3rem;
            }
        }
        
        /* HEADER: React Mount Point Optimization */
        #header-root {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            min-height: var(--header-height);
            contain: layout style;
        }
        
        /* Intelligence Hub Enhancements */
        body {
            background: var(--neural-black);
            color: var(--neural-white);
        }
        
        /* Reduce top padding for hero section */
        .neural-section.intelligence-hero {
            padding: 0 0 0.5rem 0 !important;
        }
        
        /* main spacing is handled by design-system.css */
        
        /* Wide Container Override for Intelligence Hub */
        .neural-container--wide {
            max-width: 1600px !important;
        }
        
        /* Make hero and search sections wider */
        .intelligence-hero .neural-container,
        .neural-section:nth-of-type(2) .neural-container {
            max-width: 1400px !important;
        }
        
        /* Hero Section */
        .intelligence-hero {
            background: linear-gradient(135deg, 
                rgba(var(--neural-purple-rgb), 0.1) 0%, 
                var(--neural-black) 50%,
                rgba(var(--neural-orange-rgb), 0.05) 100%
            );
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .intelligence-hero h1 {
            background: linear-gradient(135deg, var(--neural-white) 0%, var(--neural-soft-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Section Spacing */
        .neural-section {
            padding: var(--space-4xl, 4rem) 0;
        }
        
        .neural-section:first-of-type {
            padding-top: var(--space-3xl, 3rem);
        }
        
        /* Enhanced Card Styling */
        .neural-card {
            background: rgba(255, 255, 255, 0.03) !important;
            border: 1px solid rgba(255, 255, 255, 0.08) !important;
            border-radius: var(--radius-lg, 12px);
            padding: var(--space-xl, 2rem);
            transition: all var(--transition-normal, 0.3s ease);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .neural-card:hover {
            background: rgba(255, 255, 255, 0.06) !important;
            border-color: rgba(var(--neural-purple-rgb), 0.3) !important;
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(var(--neural-purple-rgb), 0.15);
        }
        
        /* Category Cards */
        .category-card {
            text-align: center;
            min-height: 140px;
            justify-content: center;
        }
        
        .category-card h3 {
            color: var(--neural-white);
            margin-bottom: var(--space-sm, 0.5rem);
            font-weight: var(--font-weight-medium, 500);
        }
        
        .category-card p {
            color: var(--neural-orange);
            font-weight: var(--font-weight-medium, 500);
            font-size: 0.875rem;
        }
        
        /* Article Cards */
        .article-card {
            min-height: 280px;
            max-width: 500px; /* Prevent cards from stretching too wide when alone */
        }
        
        .neural-card__content {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: var(--space-md, 1rem);
        }
        
        .article-card h3 {
            color: var(--neural-white);
            line-height: 1.3;
            margin-bottom: var(--space-md, 1rem);
        }
        
        .article-card p {
            flex-grow: 1;
            line-height: 1.6;
        }
        
        .article-meta {
            margin-top: auto;
            padding-top: var(--space-md, 1rem);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.6) !important;
            font-size: 0.875rem;
            font-weight: var(--font-weight-medium, 500);
        }
        
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: var(--space-3xl, 3rem);
        }
        
        .section-header h2 {
            margin-bottom: var(--space-md, 1rem);
            position: relative;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, var(--neural-purple), var(--neural-orange));
            border-radius: 1px;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .neural-section {
                padding: var(--space-2xl, 2rem) 0;
            }
            
            .neural-grid--4 {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--space-lg, 1.5rem);
            }
            
            .neural-grid--3 {
                grid-template-columns: 1fr;
                gap: var(--space-lg, 1.5rem);
            }
            
            .category-card {
                min-height: 120px;
            }
            
            .article-card {
                min-height: 240px;
            }
        }
        
        @media (max-width: 480px) {
            .neural-grid--4 {
                grid-template-columns: 1fr;
            }
        }
        
        /* Search functionality */
        .search-container {
            max-width: 600px;
            margin: 0 auto 3rem auto;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            border-color: var(--neural-soft-blue);
            box-shadow: 0 0 0 3px rgba(116, 238, 221, 0.1);
        }
        
        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Enhanced article cards */
        .article-card {
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        
        .article-card:hover {
            text-decoration: none;
            color: inherit;
        }
        
        .article-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.875rem;
        }
        
        .article-category {
            background: linear-gradient(135deg, #3c1361, #d97706);
            color: #fff;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .article-date {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }
        
        .read-time {
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Category stats */
        .category-card {
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: flex;
        }
        
        .category-card:hover {
            text-decoration: none;
            color: inherit;
        }
        
        /* Filter buttons */
        .filter-container {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.875rem;
        }
        
        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, #3c1361, #d97706);
            border-color: #d97706;
        }
        
        /* No results message */
        .no-results {
            text-align: center;
            padding: 3rem;
            color: #9ca3af;
            display: none;
        }
        
        /* Hidden articles */
        .article-card.hidden {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
        }
        
        @media (max-width: 768px) {
            .article-meta-row {
                flex-direction: column;
                gap: 0.5rem;
                align-items: flex-start;
            }
            
            .filter-container {
                gap: 0.5rem;
            }
            
            .filter-btn {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
            }
        }
    