        /* Blog-specific styles - inherits from common.css */
        
        /* Blog Header */
        .blog-header {
            text-align: center;
            padding: 60px 20px 40px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            margin: -20px -20px 40px -20px;
            border-radius: 0 0 16px 16px;
            min-height: 200px; /* CLS prevention */
        }
        
        .blog-header-title {
            font-size: 2.5rem;
            font-weight: 300;
            margin: 0 0 16px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }
        
        .blog-header-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        /* Featured Article */
        .featured-article {
            margin-bottom: 48px;
            min-height: 400px; /* CLS prevention */
        }
        
        .featured-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }
        
        .featured-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.18);
        }
        
        .featured-image {
            position: relative;
            overflow: hidden;
            min-height: 400px;
        }
        
        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .featured-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--accent-color);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .featured-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .featured-category {
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .featured-title {
            font-size: 2rem;
            font-weight: 400;
            margin: 0 0 16px 0;
            line-height: 1.3;
            color: #212121;
        }
        
        .featured-title a {
            color: inherit;
            text-decoration: none;
        }
        
        .featured-title a:hover {
            color: var(--primary-color);
        }
        
        .featured-excerpt {
            font-size: 1rem;
            line-height: 1.7;
            color: #616161;
            margin-bottom: 24px;
        }
        
        .featured-meta {
            display: flex;
            gap: 24px;
            font-size: 0.9rem;
            color: #757575;
            margin-bottom: 24px;
            flex-wrap: wrap;
        }
        
        .featured-meta > div {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .featured-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: background 0.3s ease;
        }
        
        .featured-link:hover {
            background: var(--primary-dark);
        }
        
        /* Category Filters */
        .blog-categories {
            margin-bottom: 40px;
        }
        
        .category-chips {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .category-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 24px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #616161;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .category-chip:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            background: rgba(25, 118, 210, 0.05);
        }
        
        .category-chip.active {
            background: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }
        
        .category-chip i {
            font-size: 18px;
        }
        
        /* Articles Grid */
        .blog-articles {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 28px;
            margin-bottom: 60px;
            min-height: 500px; /* CLS prevention */
        }
        
        .article-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .article-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
        .article-card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
        }
        
        .article-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .article-card:hover .article-card-image img {
            transform: scale(1.05);
        }
        
        .article-card-category {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(25, 118, 210, 0.9);
            color: white;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .article-card-content {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .article-card-title {
            font-size: 1.3rem;
            font-weight: 500;
            margin: 0 0 12px 0;
            line-height: 1.4;
        }
        
        .article-card-title a {
            color: #212121;
            text-decoration: none;
        }
        
        .article-card-title a:hover {
            color: var(--primary-color);
        }
        
        .article-card-excerpt {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #616161;
            margin-bottom: 16px;
            flex: 1;
        }
        
        .article-card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 16px;
            border-top: 1px solid #f0f0f0;
            font-size: 0.85rem;
            color: #757575;
        }
        
        .article-card-date {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .article-card-reading-time {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        /* Newsletter Section */
        /* Static Article Links for SEO - Hidden visually but accessible to crawlers */
        .blog-static-links-section {
            margin: 0;
            padding: 0;
            border: none;
            max-height: 0;
            overflow: hidden;
            font-size: 0;
            line-height: 0;
        }
        
        .blog-static-link {
            display: inline-block;
            font-size: 0.75rem;
            line-height: 1.2;
            color: #999;
            text-decoration: none;
            margin: 0 8px 4px 0;
            padding: 2px 4px;
        }
        
        .blog-static-link-title {
            display: inline;
        }
        
        .blog-static-link-date {
            display: none;
        }
        
        .blog-newsletter,
        .article-newsletter {
            margin: 80px 0 40px;
            min-height: 320px; /* CLS prevention */
        }
        
        .newsletter-card {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 48px 40px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 8px 24px rgba(25, 118, 210, 0.3);
            min-height: 280px; /* CLS prevention */
        }
        
        .newsletter-card i {
            font-size: 48px;
            margin-bottom: 16px;
            opacity: 0.9;
        }
        
        .newsletter-card h3 {
            font-size: 1.8rem;
            font-weight: 400;
            margin: 0 0 12px 0;
        }
        
        .newsletter-card p {
            font-size: 1rem;
            opacity: 0.9;
            margin: 0 0 24px 0;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .newsletter-form {
            display: flex;
            gap: 12px;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.15);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .newsletter-form input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.25);
            border-color: white;
        }
        
        .btn-subscribe {
            padding: 14px 32px;
            background: white;
            color: var(--primary-color);
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .btn-subscribe:hover {
            background: #f5f5f5;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
        
        /* Article Page Specific */
        .blog-article-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 32px;
            padding: 12px 0;
            font-size: 0.95rem;
            color: white;
        }
        
        .breadcrumb a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 4px 8px;
            border-radius: 4px;
            transition: all 0.2s ease;
            opacity: 0.9;
        }
        
        .breadcrumb a:hover {
            text-decoration: none;
            background: rgba(255, 255, 255, 0.15);
            opacity: 1;
        }
        
        .breadcrumb i {
            font-size: 18px;
            color: white;
            opacity: 0.8;
        }
        
        .breadcrumb span {
            color: white;
            font-weight: 600;
            padding: 4px 8px;
        }
        
        /* Article Header */
        .blog-article {
            background: white;
            border-radius: 12px;
            padding: 48px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            margin-bottom: 48px;
        }
        
        .article-header {
            margin-bottom: 40px;
        }
        
        .article-category {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(25, 118, 210, 0.1);
            color: var(--primary-color);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }
        
        .article-title {
            font-size: 1.8rem;
            font-weight: 400;
            line-height: 1.3;
            color: #212121;
            margin: 0 0 24px 0;
        }
        
        .article-meta {
            display: flex;
            gap: 24px;
            font-size: 0.95rem;
            color: #757575;
            padding-bottom: 24px;
            border-bottom: 1px solid #f0f0f0;
            flex-wrap: wrap;
        }
        
        .article-meta > div {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .article-meta i {
            font-size: 18px;
        }
        
        .article-featured-image {
            margin: 32px 0;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .article-featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .article-summary {
            background: #f8f9fa;
            border-left: 4px solid var(--primary-color);
            padding: 20px 24px;
            margin: 24px 0;
            border-radius: 4px;
        }
        
        .article-summary p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #424242;
            margin: 0;
            font-weight: 400;
        }
        
        /* Article Content Typography */
        .article-content {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #424242;
        }
        
        .article-content h1 {
            font-size: 1.6rem;
            font-weight: 500;
            color: #212121;
            margin: 40px 0 20px 0;
            padding-top: 40px;
            border-top: 1px solid #f0f0f0;
        }
        
        .article-content h1:first-child {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }
        
        .article-content h2 {
            font-size: 1.5rem;
            font-weight: 500;
            color: #212121;
            margin: 40px 0 18px 0;
            padding-top: 40px;
            border-top: 1px solid #f0f0f0;
        }
        
        .article-content h2:first-child {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }
        
        .article-content h3 {
            font-size: 1.3rem;
            font-weight: 500;
            color: #212121;
            margin: 32px 0 16px 0;
        }
        
        .article-content p {
            margin: 0 0 20px 0;
        }
        
        .article-content ul,
        .article-content ol {
            margin: 0 0 20px 0;
            padding-left: 0;
            list-style: none;
        }
        
        .article-content ul li {
            position: relative;
            padding-left: 32px;
            margin-bottom: 12px;
        }
        
        .article-content ul li::before {
            content: "chevron_right";
            font-family: 'Material Icons';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-size: 18px;
            line-height: inherit;
        }
        
        .article-content ol {
            counter-reset: item;
            padding-left: 0;
        }
        
        .article-content ol li {
            position: relative;
            padding-left: 32px;
            margin-bottom: 12px;
            counter-increment: item;
        }
        
        .article-content ol li::before {
            content: counter(item) ".";
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .article-content a {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .article-content a:hover {
            color: var(--primary-dark);
        }
        
        .article-content blockquote {
            border-left: 4px solid var(--primary-color);
            padding: 16px 24px;
            margin: 24px 0;
            background: #f8f9fa;
            font-style: italic;
            color: #616161;
        }
        
        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 24px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .article-content code {
            background: #f5f5f5;
            padding: 2px 6px;
            border-radius: 3px;
            font-family: 'Courier New', monospace;
            font-size: 0.9em;
            color: #c7254e;
        }
        
        .article-content pre {
            background: #282c34;
            color: #abb2bf;
            padding: 20px;
            border-radius: 8px;
            overflow-x: auto;
            margin: 24px 0;
        }
        
        .article-content pre code {
            background: none;
            color: inherit;
            padding: 0;
        }
        
        /* Article Footer */
        
        /* Related Articles */
        .related-articles {
            margin: 48px 0;
        }
        
        .related-articles h2 {
            font-size: 1.8rem;
            font-weight: 400;
            color: #212121;
            margin: 0 0 24px 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        
        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .featured-card {
                grid-template-columns: 1fr;
            }
            
            .featured-image {
                min-height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .blog-header {
                padding: 40px 20px 30px;
            }
            
            .blog-header-title {
                font-size: 2rem;
                flex-direction: column;
                gap: 8px;
            }
            
            .blog-header-subtitle {
                font-size: 1rem;
            }
            
            .blog-articles {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .blog-article {
                padding: 28px 20px;
            }
            
            .article-title {
                font-size: 1.5rem;
            }
            
            .article-content {
                font-size: 1rem;
            }
            
            .article-content h1 {
                font-size: 1.3rem;
            }
            
            .article-content h2 {
                font-size: 1.2rem;
            }
            
            .article-content h3 {
                font-size: 1.1rem;
            }
            
            .featured-content {
                padding: 28px 20px;
            }
            
            .featured-title {
                font-size: 1.6rem;
            }
            
            .newsletter-card {
                padding: 32px 24px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .btn-subscribe {
                width: 100%;
            }
            
            .category-chips {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 8px;
            }
            
            .category-chip {
                white-space: nowrap;
            }
        }
        
        @media (max-width: 480px) {
            .article-meta {
                flex-direction: column;
                gap: 12px;
                align-items: flex-start;
            }
            
            .article-share {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .share-btn {
                width: 100%;
                justify-content: center;
            }
        }

