     /* Blog specific overrides to match premium design */
        .blog-page {
            background: #fefcf8;
        }
        
        /* Typography */
        body {
            font-family: 'Jost', sans-serif;
            font-size: 14px;
            line-height: 1.5;
            color: #111827;
        }
        h1 { font-size: 38px; font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: -0.02em; }
        h2 { font-size: 28px; font-family: 'Playfair Display', serif; font-weight: 600; }
        h3, h4, h5, h6 { font-size: 24px; font-family: 'Playfair Display', serif; font-weight: 600; }
        
        /* Blog hero */
        .blog-hero {
            background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 100%);
            padding: 140px 0 80px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .blog-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 20%, rgba(239,191,4,0.12), transparent 50%);
            pointer-events: none;
        }
        .blog-hero h1 {
            background: linear-gradient(135deg, #ffffff 0%, #EFBF04 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .blog-hero-actions .btn {
            background: #25D366;
            color: white;
            padding: 12px 28px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
        }
        .blog-hero-actions .btn-outline {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
        }
        .blog-search-container {
            max-width: 700px;
            margin: 40px auto 0;
            background: rgba(255,255,255,0.08);
            backdrop-filter: blur(12px);
            border-radius: 60px;
            padding: 20px;
        }
        .blog-search-form {
            display: flex;
            gap: 12px;
        }
        .blog-search-form input {
            flex: 1;
            padding: 14px 20px;
            border-radius: 40px;
            border: none;
            background: rgba(255,255,255,0.2);
            color: white;
            font-size: 14px;
        }
        .blog-search-form button {
            background: #EFBF04;
            border: none;
            border-radius: 40px;
            padding: 0 24px;
            font-weight: 600;
            color: #0a0f1c;
            cursor: pointer;
        }
        .quick-categories {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
        }
        .quick-categories a {
            background: rgba(255,255,255,0.1);
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 13px;
            text-decoration: none;
            color: white;
            transition: 0.2s;
        }
        .quick-categories a:hover {
            background: #EFBF04;
            color: #0a0f1c;
        }
        
        /* Featured post card */
        .featured-post-card {
            background: white;
            border-radius: 28px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            margin-bottom: 60px;
        }
        @media (max-width: 768px) {
            .featured-post-card { grid-template-columns: 1fr; }
        }
        .featured-post-image {
            height: 100%;
            min-height: 320px;
        }
        .featured-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .featured-post-content {
            padding: 32px;
        }
        .post-category {
            display: inline-block;
            background: #EFBF04;
            padding: 4px 16px;
            border-radius: 40px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .post-meta {
            display: flex;
            gap: 20px;
            font-size: 13px;
            color: #6b7280;
            margin: 16px 0;
        }
        
        /* Blog grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 40px;
        }
        @media (max-width: 992px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }
        
        .blog-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            transition: 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
            border: 1px solid #f1f5f9;
            cursor: pointer;
        }
        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 35px -8px rgba(0,0,0,0.1);
        }
        .blog-card-image {
            height: 200px;
            overflow: hidden;
        }
        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }
        .blog-card:hover .blog-card-image img { transform: scale(1.05); }
        .blog-card-content {
            padding: 20px;
        }
        .blog-card-category {
            background: #EFBF04;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 12px;
        }
        .blog-card h4 {
            font-size: 18px;
            margin: 8px 0;
        }
        .blog-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 16px;
            padding-top: 12px;
            border-top: 1px solid #f0f0f0;
        }
        .read-more-link {
            color: #25D366;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        /* Author spotlight */
        .author-spotlight {
            background: white;
            border-radius: 28px;
            padding: 40px;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 40px;
            margin: 60px 0;
            align-items: center;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }
        @media (max-width: 768px) {
            .author-spotlight { grid-template-columns: 1fr; text-align: center; }
        }
        .author-image img {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #EFBF04;
        }
        .author-title {
            color: #EFBF04;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        /* Newsletter CTA */
        .newsletter-cta {
            background: #0a0f1c;
            border-radius: 28px;
            padding: 50px;
            text-align: center;
            color: white;
            margin: 60px 0;
        }
        .newsletter-form {
            display: flex;
            gap: 16px;
            max-width: 500px;
            margin: 30px auto 0;
        }
        @media (max-width: 640px) {
            .newsletter-form { flex-direction: column; }
        }
        .newsletter-form input {
            flex: 1;
            padding: 14px 20px;
            border-radius: 60px;
            border: none;
            background: rgba(255,255,255,0.1);
            color: white;
        }
        .newsletter-form button {
            background: #EFBF04;
            border: none;
            border-radius: 60px;
            padding: 14px 28px;
            font-weight: 700;
            color: #0a0f1c;
            cursor: pointer;
        }
        
        /* Category filters */
        .category-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 30px 0;
        }
        .category-filter {
            background: #f3f4f6;
            border: none;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 500;
            cursor: pointer;
            transition: 0.2s;
        }
        .category-filter.active,
        .category-filter:hover {
            background: #EFBF04;
            color: #0a0f1c;
        }
        