/* CSS Variables */
        }
        
        /* Blog-specific styles */
        
        .blog-post {
            background: #0a0a0a;
            color: #ffffff;
            min-height: 100vh;
        }
        
        .blog-hero {
            padding: 6rem 0 6rem;
            background: linear-gradient(135deg, 
                var(--neural-purple, #3c1361) 0%, 
                rgba(60, 19, 97, 0.8) 50%, 
                var(--neural-orange, #d97706) 100%);
        }
        
        .blog-hero .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .blog-hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 200;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .blog-hero-content .blog-subtitle {
            font-size: 1.25rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
        }
        
        .blog-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
        }
        
        .blog-category {
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .blog-date {
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
        }
        
        .blog-hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .blog-hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .blog-content {
            padding: 6rem 0;
        }
        
        .blog-content .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 4rem;
        }
        
        .blog-article {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 16px;
            padding: 4rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .blog-intro {
            font-size: 1.2rem;
            line-height: 1.7;
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(var(--neural-purple-rgb, 60, 19, 97), 0.1);
            border-left: 4px solid var(--neural-orange, #d97706);
            border-radius: 0 8px 8px 0;
        }
        
        .blog-article h2 {
            font-size: 2rem;
            font-weight: 300;
            margin: 3rem 0 1.5rem;
            color: var(--neural-orange, #d97706);
        }
        
        .blog-article p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        
        /* Enhanced blog image styles for better content flow */
        .blog-image-container {
            margin: 2.5rem auto;
            text-align: center;
            max-width: 680px; /* Constrain width for better readability */
        }
        
        .blog-image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            display: block;
            margin: 0 auto;
        }
        
        /* Smaller inline images for screenshots/UI elements */
        .blog-image-container.blog-image--inline img {
            max-width: 600px;
            margin: 1.5rem auto;
        }
        
        /* Medium images for diagrams */
        .blog-image-container.blog-image--medium img {
            max-width: 750px;
        }
        
        /* Full-width for hero/feature images */
        .blog-image-container.blog-image--full img {
            max-width: 100%;
        }
        
        .image-caption {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 1rem;
            font-style: italic;
            line-height: 1.4;
            padding: 0 1rem;
        }
        
        /* Ensure images don't break text flow on mobile */
        @media (max-width: 768px) {
            .blog-image-container {
                margin: 2rem auto;
            }
            
            .blog-image-container img {
                border-radius: 8px;
            }
            
            .blog-image-container.blog-image--inline img,
            .blog-image-container.blog-image--medium img {
                max-width: 100%;
            }
            
            .image-caption {
                font-size: 0.85rem;
                padding: 0 0.5rem;
            }
        }
        
        /* Better integration with article text */
        .blog-article p + .blog-image-container {
            margin-top: 2rem;
        }
        
        .blog-image-container + p {
            margin-top: 2rem;
        }
        
        /* Optimize hero images specifically */
        .blog-hero-image {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .blog-hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            object-fit: cover;
            max-height: 400px;
            width: 100%;
        }
        
        @media (max-width: 768px) {
            .blog-hero-image {
                max-width: 100%;
            }
            
            .blog-hero-image img {
                max-height: 300px;
            }
        }
        .blog-list {
            margin: 2rem 0;
            padding-left: 0;
            list-style: none;
        }
        
        .blog-list li {
            margin-bottom: 1rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 8px;
            border-left: 3px solid var(--neural-orange, #d97706);
        }
        
        .blog-list li strong {
            color: var(--neural-orange, #d97706);
        }
        
        .blog-cta {
            margin-top: 4rem;
            padding: 3rem;
            background: linear-gradient(135deg, 
                rgba(var(--neural-purple-rgb, 60, 19, 97), 0.2), 
                rgba(var(--neural-orange-rgb, 217, 119, 6), 0.1));
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .blog-cta h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--neural-orange, #d97706);
        }
        
        .blog-cta p {
            margin-bottom: 2rem;
        }
        
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary {
            background: var(--neural-orange, #d97706);
            color: #000000;
        }
        
        .btn-primary:hover {
            background: #e68a1f;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(217, 119, 6, 0.3);
        }
        
        /* Related Articles Section */
        .related-articles {
            margin-top: 4rem;
            padding: 3rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .related-articles h2 {
            font-size: 2rem;
            font-weight: 200;
            color: var(--neural-white, #ffffff);
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .article-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            position: relative;
            overflow: hidden;
        }
        
        .article-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--neural-orange, #d97706), var(--neural-purple, #7b2cbf));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .article-card:hover::before {
            transform: scaleX(1);
        }
        
        .article-card:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(217, 119, 6, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .article-date {
            font-size: 0.85rem;
            color: var(--neural-light-grey, #a0a0a0);
            margin-bottom: 0.5rem;
        }
        
        .article-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--neural-white, #ffffff);
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }
        
        .article-excerpt {
            font-size: 0.95rem;
            color: var(--neural-light-grey, #a0a0a0);
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .article-link {
            color: var(--neural-orange, #d97706);
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        /* Enhanced Service CTA */
        .service-callout {
            background: linear-gradient(135deg, 
                rgba(60, 19, 97, 0.1) 0%, 
                transparent 50%,
                rgba(217, 119, 6, 0.1) 100%
            );
            border: 1px solid rgba(217, 119, 6, 0.3);
            border-radius: 16px;
            padding: 2.5rem;
            margin: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .service-callout::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 0.8; transform: scale(1.1); }
        }
        
        .service-callout-content {
            position: relative;
            z-index: 1;
        }
        
        .service-callout h3 {
            font-size: 1.8rem;
            font-weight: 300;
            color: var(--neural-white, #ffffff);
            margin-bottom: 1rem;
        }
        
        .service-callout p {
            font-size: 1.1rem;
            color: var(--neural-light-grey, #a0a0a0);
            margin-bottom: 1.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .service-callout .service-link {
            color: var(--neural-orange, #d97706);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s ease;
        }
        
        .service-callout .service-link:hover {
            border-bottom-color: var(--neural-orange, #d97706);
        }
        
        .service-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--neural-white, #ffffff);
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--neural-orange, #d97706);
            transform: translateY(-2px);
        }
        
        /* Neural TL;DR Section */
        .neural-tldr-section {
            padding: 3rem 0;
            background: linear-gradient(135deg, 
                rgba(var(--neural-purple-rgb, 60, 19, 97), 0.05) 0%, 
                rgba(var(--neural-orange-rgb, 217, 119, 6), 0.02) 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .neural-tldr-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 4rem;
        }
        
        .neural-tldr-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }
        
        .neural-tldr-title {
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--neural-orange, #d97706);
            margin: 0;
        }
        
        .neural-tldr-badge {
            background: rgba(var(--neural-orange-rgb, 217, 119, 6), 0.2);
            color: var(--neural-orange, #d97706);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid rgba(var(--neural-orange-rgb, 217, 119, 6), 0.3);
        }
        
        .neural-tldr-content {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 2rem;
            border-left: 4px solid var(--neural-orange, #d97706);
            backdrop-filter: blur(10px);
        }
        
        .neural-tldr-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin: 0;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .articles-grid {
                grid-template-columns: 1fr;
            }
            
            .blog-post {
                padding-top: 80px;
            }
            
            .blog-hero .container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .blog-hero {
                padding: 2rem 0 4rem;
            }
            
            .blog-content .container {
                padding: 0 1.5rem;
            }
            
            .blog-article {
                padding: 2rem 1.5rem;
            }
            
            .blog-intro {
                padding: 1.5rem;
            }
            
            .blog-cta {
                padding: 2rem 1.5rem;
            }
            
            .neural-tldr-container {
                padding: 0 1.5rem;
            }
            
            .neural-tldr-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            
            .neural-tldr-content {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .blog-content .container {
                padding: 0 1rem;
            }
            
            .blog-article {
                padding: 1.5rem 1rem;
            }
        }
