/* ============================================
           BLOG PAGE - COMPLETE STYLING
        ============================================ */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            background: #f9fafb;
            overflow-x: hidden;
        }
        
        /* Scroll Progress Bar */
        .scroll-progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(90deg, #1e40af 0%, #3b82f6 50%, #f97316 100%);
            z-index: 9999;
            transition: width 0.1s linear;
            pointer-events: none;
            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
        }
        
        /* Hero Section */
        .blog-hero {
            background: linear-gradient(180deg, #ffffff 0%, #fef3f2 30%, #fff7ed 60%, #fef3f2 100%);
            padding: 6rem 5% 4rem;
            color: #0f172a;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .blog-hero::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            top: -300px;
            right: -200px;
            animation: float-blob 25s infinite ease-in-out;
        }
        
        .blog-hero::after {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
            bottom: -200px;
            left: -150px;
            animation: float-blob 20s infinite ease-in-out reverse;
        }
        
        @keyframes float-blob {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(50px, -50px) scale(1.1);
            }
            66% {
                transform: translate(-30px, 30px) scale(0.95);
            }
        }
        
        .hero-content {
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            border: 2px solid #bfdbfe;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            color: #1e40af;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 2rem;
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
            animation: badge-bounce 3s infinite;
        }
        
        @keyframes badge-bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #0f172a;
            letter-spacing: -0.02em;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            color: #64748b;
        }
        
        /* Search Bar in Hero */
        .hero-search {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 1.2rem 4rem 1.2rem 3.5rem;
            border-radius: 50px;
            border: 2px solid #bfdbfe;
            font-size: 1.05rem;
            background: white;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .search-input:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 15px 50px rgba(59, 130, 246, 0.2);
        }
        
        .search-icon {
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.3rem;
            color: #6b7280;
        }
        
        .search-button {
            position: absolute;
            right: 0.5rem;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .search-button:hover {
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
        }
        
        /* Stats Section */
        .blog-stats {
            max-width: 1600px;
            margin: -2rem auto 0;
            padding: 0 5%;
            position: relative;
            z-index: 10;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
        }
        
        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
            display: block;
        }
        
        .stat-number {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .stat-label {
            color: #6b7280;
            font-size: 0.95rem;
            font-weight: 600;
        }
        
        /* Main Container */
        .blog-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 6rem 5%;
        }
        
        /* Categories Filter */
        .categories-section {
            margin-bottom: 4rem;
            text-align: center;
        }
        
        .categories-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 1.5rem;
        }
        
        .categories-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .category-btn {
            background: white;
            color: #1e40af;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            border: 2px solid #bfdbfe;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .category-btn:hover,
        .category-btn.active {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            border-color: #1e40af;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
        }
        
        .category-count {
            background: rgba(59, 130, 246, 0.15);
            padding: 0.2rem 0.6rem;
            border-radius: 50px;
            font-size: 0.85rem;
        }
        
        .category-btn.active .category-count,
        .category-btn:hover .category-count {
            background: rgba(255, 255, 255, 0.3);
        }
        
        /* Featured Post */
        .featured-section {
            margin-bottom: 5rem;
        }
        
        .featured-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            color: #92400e;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
            border: 2px solid #fcd34d;
            margin-bottom: 2rem;
        }
        
        .featured-post {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .featured-post::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #3b82f6, #f97316, #3b82f6);
            background-size: 200% 100%;
            animation: gradient-shift 3s ease infinite;
        }
        
        @keyframes gradient-shift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }
        
        .featured-post:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(59, 130, 246, 0.15);
        }
        
        .featured-image {
            position: relative;
            overflow: hidden;
        }
        
        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .featured-post:hover .featured-image img {
            transform: scale(1.1);
        }
        
        .featured-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .post-meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        
        .post-category {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
            color: #1e40af;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 2px solid #bfdbfe;
        }
        
        .post-date {
            color: #6b7280;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .post-read-time {
            color: #6b7280;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .post-title {
            font-size: 2.2rem;
            font-weight: 900;
            color: #1f2937;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        
        .post-excerpt {
            font-size: 1.05rem;
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        .post-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 1rem;
            background: #f9fafb;
            border-radius: 15px;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #3b82f6;
        }
        
        .author-info {
            flex: 1;
        }
        
        .author-name {
            font-weight: 700;
            color: #1f2937;
            font-size: 1rem;
        }
        
        .author-role {
            color: #6b7280;
            font-size: 0.9rem;
        }
        
        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .blog-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #3b82f6, #f97316);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
        }
        
        .blog-card:hover::before {
            transform: scaleX(1);
        }
        
        .blog-card-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }
        
        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .blog-card:hover .blog-card-image img {
            transform: scale(1.1);
        }
        
        .blog-card-content {
            padding: 2rem;
        }
        
        .card-title {
            font-size: 1.5rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .card-excerpt {
            font-size: 1rem;
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        /* Buttons */
        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: white;
            box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(30, 64, 175, 0.4);
        }
        
        /* Load More Button */
        .load-more-section {
            text-align: center;
            margin-top: 4rem;
        }
        
        .btn-load-more {
            background: white;
            color: #1e40af;
            border: 2px solid #1e40af;
            padding: 1.2rem 3rem;
        }
        
        .btn-load-more:hover {
            background: #1e40af;
            color: white;
        }
        
        /* Newsletter CTA */
        .newsletter-cta {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            padding: 4rem;
            border-radius: 30px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            margin-top: 6rem;
            box-shadow: 0 20px 60px rgba(30, 64, 175, 0.3);
        }
        
        .newsletter-cta::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 40px 40px;
            animation: drift 30s linear infinite;
        }
        
        @keyframes drift {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(40px, 40px);
            }
        }
        
        .newsletter-content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .newsletter-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }
        
        .newsletter-content h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }
        
        .newsletter-content p {
            font-size: 1.2rem;
            opacity: 0.95;
            margin-bottom: 2.5rem;
        }
        
        .newsletter-form {
            display: flex;
            gap: 1rem;
            max-width: 550px;
            margin: 0 auto;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 1.2rem 2rem;
            border-radius: 50px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.95);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .newsletter-input:focus {
            outline: none;
            background: white;
            border-color: white;
        }
        
        .newsletter-button {
            background: white;
            color: #1e40af;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            border: none;
            font-weight: 800;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        
        .newsletter-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }
        
        /* Responsive Design */
        @media (max-width: 968px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .featured-post {
                grid-template-columns: 1fr;
            }
            
            .featured-image {
                height: 300px;
            }
            
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .newsletter-form {
                flex-direction: column;
            }
        }
        
        @media (max-width: 640px) {
            .blog-hero {
                padding: 4rem 5% 3rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .search-input {
                padding: 1rem 1rem 1rem 3rem;
            }
            
            .search-button {
                position: static;
                transform: none;
                width: 100%;
                margin-top: 1rem;
            }
            
            .hero-search {
                display: flex;
                flex-direction: column;
            }
            
            .featured-content {
                padding: 2rem;
            }
            
            .post-title {
                font-size: 1.8rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .newsletter-cta {
                padding: 3rem 2rem;
            }
            
            .newsletter-content h2 {
                font-size: 1.8rem;
            }
        }
/* ── WordPress archive additions ── */

/* Search form in hero */
.hero-search { position:relative; display:flex; max-width:600px; margin:2rem auto 0; }
.hero-search form { display:flex; width:100%; background:white; border-radius:100px; overflow:hidden; box-shadow:0 4px 24px rgba(0,0,0,0.12); }
.hero-search .search-icon { position:absolute; left:20px; top:50%; transform:translateY(-50%); font-size:1.1rem; pointer-events:none; z-index:1; }
.hero-search .search-input { flex:1; border:none; outline:none; padding:1rem 1rem 1rem 3rem; font-size:1rem; color:#1f2937; background:transparent; }
.hero-search .search-button { background:linear-gradient(135deg,#3b82f6,#1d4ed8); color:white; border:none; padding:0 1.8rem; font-size:0.95rem; font-weight:700; cursor:pointer; transition:all .3s; white-space:nowrap; }
.hero-search .search-button:hover { background:linear-gradient(135deg,#2563eb,#1e40af); }

/* Active search indicator */
.search-active-bar { background:#eff6ff; border:1px solid #bfdbfe; padding:0.75rem 1.5rem; border-radius:12px; margin:0 0 1.5rem; display:flex; align-items:center; justify-content:space-between; font-size:0.9rem; color:#1e40af; }
.search-active-bar a { color:#ef4444; font-weight:600; text-decoration:none; }
.search-active-bar a:hover { text-decoration:underline; }

/* Category filter active state */
.category-btn.active { background:linear-gradient(135deg,#3b82f6,#1d4ed8); color:white; border-color:transparent; }
.category-btn.active .category-count { background:rgba(255,255,255,0.25); color:white; }

/* Blog grid: 3-col with featured spanning full width on large */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
@media(max-width:1100px){ .blog-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:700px){ .blog-grid { grid-template-columns:1fr; } }

/* Featured post tag pill on card */
.blog-card .featured-pill {
    display:inline-flex; align-items:center; gap:5px;
    background:linear-gradient(135deg,#f59e0b,#d97706);
    color:white; font-size:0.72rem; font-weight:700;
    padding:3px 10px; border-radius:100px; margin-bottom:8px; letter-spacing:.5px;
}

/* No posts state */
.no-posts { text-align:center; padding:5rem 2rem; color:#6b7280; }
.no-posts-icon { font-size:4rem; margin-bottom:1rem; }
.no-posts h3 { font-size:1.5rem; color:#374151; margin-bottom:.5rem; }

/* WordPress pagination */
.blog-pagination { display:flex; justify-content:center; align-items:center; gap:8px; padding:3rem 0 1rem; flex-wrap:wrap; }
.blog-pagination .page-numbers {
    display:inline-flex; align-items:center; justify-content:center;
    width:44px; height:44px; border-radius:10px; font-weight:600; font-size:.95rem;
    background:white; border:2px solid #e5e7eb; color:#374151;
    text-decoration:none; transition:all .2s;
}
.blog-pagination .page-numbers:hover { border-color:#3b82f6; color:#3b82f6; }
.blog-pagination .page-numbers.current { background:linear-gradient(135deg,#3b82f6,#1d4ed8); border-color:transparent; color:white; }
.blog-pagination .page-numbers.dots { border:none; background:none; cursor:default; }
.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next { width:auto; padding:0 18px; gap:6px; font-size:.9rem; }

/* Newsletter Kit.com form overrides */
.newsletter-cta { background:linear-gradient(135deg,#0f172a 0%,#1e3a5f 100%); border-radius:24px; padding:4rem 3rem; margin:3rem 0; text-align:center; }
.newsletter-cta .newsletter-icon { font-size:3rem; margin-bottom:1rem; }
.newsletter-cta h2 { font-size:2rem; font-weight:800; color:white; margin-bottom:1rem; }
.newsletter-cta p { color:rgba(255,255,255,.75); font-size:1.05rem; max-width:600px; margin:0 auto 2rem; line-height:1.8; }
.kit-form-wrap { max-width:480px; margin:0 auto; }
.kit-form-wrap input[type="email"] { width:100%; padding:.9rem 1.4rem; border-radius:100px 0 0 100px; border:none; font-size:.95rem; outline:none; }
.kit-form-wrap button { background:linear-gradient(135deg,#3b82f6,#1d4ed8); color:white; border:none; padding:.9rem 1.8rem; border-radius:0 100px 100px 0; font-weight:700; cursor:pointer; white-space:nowrap; transition:all .3s; }
.kit-form-wrap button:hover { background:linear-gradient(135deg,#2563eb,#1e40af); }
.kit-form-row { display:flex; }

.hero-search { position:relative; display:flex; max-width:600px; margin:2rem auto 0; }
.hero-search form { 
    display:flex; 
    width:100%; 
    background:white; 
    border-radius:100px; 
    overflow:hidden; 
    box-shadow:0 4px 24px rgba(0,0,0,0.12);
    align-items: center; /* ← add this */
}
.hero-search .search-button { 
    background:linear-gradient(135deg,#3b82f6,#1d4ed8); 
    color:white; 
    border:none; 
    padding:0 1.8rem; 
    font-size:0.95rem; 
    font-weight:700; 
    cursor:pointer; 
    transition:all .3s; 
    white-space:nowrap;
    height: 100%;        /* ← add this */
    min-height: 52px;    /* ← add this */
    position: static;   /* ← add this, overrides the absolute from main block */
    transform: none;     /* ← add this */
}
.category-count {
    background: #dbeafe;       /* ← solid light blue, visible */
    color: #1e40af;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
}

.category-btn {
    text-decoration: none !important;
}

.category-btn span {
    text-decoration: none !important;
}

.card-title a {
    text-decoration: none !important;
    color: #1f2937;
}

.card-title a:hover {
    color: #3b82f6;
}
/* ── COMPREHENSIVE MOBILE RESPONSIVE ADDITIONS ── */

@media (max-width: 480px) {
    .blog-hero {
        padding: 3rem 5% 2rem;
    }
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .hero-search form {
        flex-direction: column;
        border-radius: 16px;
        overflow: visible;
        background: transparent;
        box-shadow: none;
        gap: 0.5rem;
    }
    .hero-search .search-input {
        border-radius: 100px;
        border: 2px solid #e2e8f0;
        background: white;
        padding: 0.9rem 1.2rem 0.9rem 2.8rem;
        width: 100%;
    }
    .hero-search .search-button {
        border-radius: 100px;
        width: 100%;
        min-height: 48px;
        padding: 0.9rem 1.5rem;
    }
    .category-filters {
        padding: 1rem 4%;
    }
    .category-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.9rem;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .featured-content {
        padding: 1.5rem;
    }
    .post-title {
        font-size: 1.4rem;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .newsletter-cta {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    .newsletter-cta h2 {
        font-size: 1.5rem;
    }
    .newsletter-cta p {
        font-size: 0.92rem;
    }
    .kit-form-row {
        flex-direction: column;
        gap: 0.6rem;
    }
    .kit-form-wrap input[type="email"] {
        border-radius: 100px;
        width: 100%;
    }
    .kit-form-wrap button {
        border-radius: 100px;
        width: 100%;
        padding: 0.9rem;
    }
    .blog-pagination {
        gap: 5px;
        padding: 2rem 0 0.5rem;
    }
    .blog-pagination .page-numbers {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.4rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
