/* Blog Page Specific Styles - Scoped to avoid conflicts */
    .blog-page-wrapper {
        --blog-primary: #ff6b35;
        --blog-primary-dark: #e55a2b;
        --blog-secondary: #2a5298;
        --blog-secondary-dark: #1e3c72;
        --blog-text-dark: #333;
        --blog-text-light: #666;
        --blog-glass-bg: rgba(255,255,255,0.96);
        --blog-glass-border: rgba(255,255,255,0.6);
        --blog-glass-shadow: 0 8px 32px 0 rgba(31,38,135,0.1);
    }

    .blog-page-wrapper {
        position: relative;
        z-index: 1;
    }

    /* ============================================================
       SECTION HERO BANNER
       ============================================================ */
    .blog-section-hero {
        background: linear-gradient(135deg, var(--blog-secondary-dark) 0%, var(--blog-secondary) 55%, #667eea 100%);
        color: white;
        padding: 5rem 0 7rem;
        text-align: center;
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    /* Animated blobs */
    .blob-1, .blob-2 {
        position: absolute;
        border-radius: 50%;
        filter: blur(70px);
        pointer-events: none;
    }
    .blob-1 {
        width: 420px; height: 420px;
        background: rgba(255,107,53,0.13);
        top: -100px; right: -80px;
        animation: floatBlob 9s ease-in-out infinite;
    }
    .blob-2 {
        width: 320px; height: 320px;
        background: rgba(102,126,234,0.15);
        bottom: -80px; left: -60px;
        animation: floatBlob 12s ease-in-out infinite reverse;
    }
    /* Wave divider at bottom */
    .hero-wave {
        position: absolute;
        bottom: -2px; left: 0; right: 0;
        line-height: 0;
    }
    .hero-wave svg { display: block; width: 100%; }
    @keyframes floatBlob {
        0%,100% { transform: translateY(0) scale(1); }
        50%      { transform: translateY(-25px) scale(1.06); }
    }
    .blog-section-hero-inner {
        position: relative; z-index: 2;
        max-width: 780px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    .hero-badge {
        display: inline-flex; align-items: center; gap: 0.5rem;
        background: rgba(255,107,53,0.2);
        border: 1px solid rgba(255,107,53,0.35);
        color: #ffcbba;
        padding: 0.45rem 1.2rem;
        border-radius: 50px;
        font-size: 0.88rem; font-weight: 600;
        margin-bottom: 1.4rem;
    }
    .blog-section-hero h1 {
        font-size: 3rem; font-weight: 800;
        line-height: 1.2; margin-bottom: 1rem;
    }
    .blog-section-hero p {
        font-size: 1.15rem; opacity: 0.85;
        line-height: 1.7; margin-bottom: 2.5rem;
        max-width: 600px; margin-left: auto; margin-right: auto;
    }
    /* Stats strip inside hero */
    .hero-stats-strip {
        display: flex; justify-content: center;
        gap: 3rem; flex-wrap: wrap;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.12);
    }
    .hstat { text-align: center; }
    .hstat-num {
        font-size: 1.9rem; font-weight: 800;
        color: white; line-height: 1;
        margin-bottom: 0.3rem;
    }
    .hstat-label {
        font-size: 0.78rem; opacity: 0.65;
        text-transform: uppercase; letter-spacing: 1.2px;
    }

    /* ============================================================
       PAGE BACKGROUND — dot grid (matches your pricing section)
       ============================================================ */
    .blog-section-page {
        background-color: #f4f6f8;
        background-image: radial-gradient(#dde1e7 1.2px, transparent 1.2px);
        background-size: 28px 28px;
        padding: 3rem 0 6rem;
        width: 100%;
        position: relative;
    }

    .page-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        width: 100%;
    }

    /* ============================================================
       SECTION HEADER (reusable)
    ============================================================ */
    .section-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .section-header-left { display: flex; align-items: center; gap: 1rem; }
    .section-icon {
        width: 52px; height: 52px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--blog-primary), var(--blog-primary-dark));
        color: white;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.4rem;
        box-shadow: 0 8px 20px rgba(255,107,53,0.3);
        flex-shrink: 0;
    }
    .section-header h2 {
        font-size: 1.8rem; font-weight: 800;
        color: var(--blog-text-dark); line-height: 1.2;
    }
    .section-header h2 span { color: var(--blog-primary); }
    .section-header p { font-size: 0.95rem; color: var(--blog-text-light); margin-top: 0.2rem; }
    .view-all-btn {
        display: inline-flex; align-items: center; gap: 0.5rem;
        background: white;
        border: 2px solid var(--blog-primary);
        color: var(--blog-primary);
        padding: 0.65rem 1.6rem;
        border-radius: 30px;
        font-weight: 700; font-size: 0.9rem;
        text-decoration: none;
        transition: all 0.3s;
        white-space: nowrap;
    }
    .view-all-btn:hover {
        background: var(--blog-primary); color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255,107,53,0.3);
    }

    /* ============================================================
       POST 1 — BIG FEATURED CARD (full width)
    ============================================================ */
    .post-featured-big {
        background: linear-gradient(135deg, var(--blog-secondary-dark) 0%, var(--blog-secondary) 100%);
        border-radius: 28px;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        min-height: 340px;
        margin-bottom: 2rem;
        box-shadow: 0 24px 60px rgba(30,60,114,0.22);
        transition: transform 0.35s, box-shadow 0.35s;
        text-decoration: none;
        position: relative;
    }
    .post-featured-big:hover {
        transform: translateY(-6px);
        box-shadow: 0 35px 70px rgba(30,60,114,0.28);
    }
    @media (max-width: 768px) {
        .post-featured-big { grid-template-columns: 1fr; }
    }
    .pfb-content {
        padding: 3rem;
        display: flex; flex-direction: column;
        justify-content: center;
        position: relative; z-index: 2;
        color: white;
    }
    .pfb-badge {
        display: inline-flex; align-items: center; gap: 0.4rem;
        background: var(--blog-primary);
        color: white;
        padding: 0.3rem 0.9rem;
        border-radius: 20px;
        font-size: 0.75rem; font-weight: 700;
        text-transform: uppercase; letter-spacing: 1px;
        margin-bottom: 1.2rem; width: fit-content;
    }
    .pfb-content h2 {
        font-size: 1.75rem; font-weight: 800;
        line-height: 1.3; color: white;
        margin-bottom: 0.9rem;
    }
    .pfb-excerpt {
        font-size: 1rem; opacity: 0.82;
        line-height: 1.65; margin-bottom: 1.5rem;
    }
    .pfb-meta {
        display: flex; align-items: center;
        gap: 1.2rem; font-size: 0.82rem;
        opacity: 0.7; margin-bottom: 1.8rem;
        flex-wrap: wrap;
    }
    .pfb-meta i { color: #ffcbba; margin-right: 3px; }
    .pfb-read-btn {
        display: inline-flex; align-items: center; gap: 0.5rem;
        background: var(--blog-primary); color: white;
        padding: 0.8rem 2rem; border-radius: 30px;
        font-weight: 700; font-size: 0.95rem;
        text-decoration: none; width: fit-content;
        transition: all 0.3s;
        box-shadow: 0 8px 20px rgba(255,107,53,0.35);
    }
    .pfb-read-btn:hover {
        background: var(--blog-primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(255,107,53,0.45);
    }
    .pfb-image {
        overflow: hidden; position: relative;
    }
    .pfb-image img {
        width: 100%; height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
    .post-featured-big:hover .pfb-image img { transform: scale(1.06); }
    .pfb-image-placeholder {
        width: 100%; height: 100%;
        background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(102,126,234,0.25));
        display: flex; align-items: center; justify-content: center;
        font-size: 6rem; color: rgba(255,255,255,0.15);
    }

    /* ============================================================
       POSTS 2 & 3 — HORIZONTAL LIST CARDS (medium)
    ============================================================ */
    .posts-row-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    @media (max-width: 768px) { .posts-row-2 { grid-template-columns: 1fr; } }

    .post-card-h {
        background: var(--blog-glass-bg);
        backdrop-filter: blur(14px);
        border: 1px solid var(--blog-glass-border);
        border-radius: 22px;
        overflow: hidden;
        display: flex;
        box-shadow: var(--blog-glass-shadow);
        transition: all 0.3s;
        text-decoration: none;
        color: inherit;
    }
    .post-card-h:hover {
        transform: translateY(-5px);
        box-shadow: 0 22px 50px rgba(0,0,0,0.11);
        border-color: rgba(255,107,53,0.2);
    }
    .pch-image { width: 145px; flex-shrink: 0; overflow: hidden; position: relative; }
    .pch-image img {
        width: 100%; height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }
    .post-card-h:hover .pch-image img { transform: scale(1.08); }
    .pch-placeholder {
        width: 100%; height: 100%;
        display: flex; align-items: center; justify-content: center;
        font-size: 2.2rem;
    }
    .pch-placeholder.blue   { background: linear-gradient(135deg,#e3f2fd,#bbdefb); color:#1976d2; }
    .pch-placeholder.orange { background: linear-gradient(135deg,#fff3e0,#ffe0b2); color:#ef6c00; }
    .pch-placeholder.green  { background: linear-gradient(135deg,#e8f5e9,#c8e6c9); color:#2e7d32; }
    .pch-placeholder.purple { background: linear-gradient(135deg,#f3e5f5,#e1bee7); color:#7b1fa2; }
    .pch-placeholder.teal   { background: linear-gradient(135deg,#e0f2f1,#b2dfdb); color:#00695c; }
    .pch-cat-badge {
        position: absolute; top: 10px; left: 10px;
        background: var(--blog-primary); color: white;
        font-size: 0.68rem; font-weight: 700;
        padding: 0.2rem 0.6rem; border-radius: 12px;
        text-transform: uppercase;
    }
    .pch-body {
        padding: 1.3rem 1.4rem;
        display: flex; flex-direction: column;
        justify-content: center; flex: 1;
    }
    .pch-meta {
        display: flex; align-items: center; gap: 0.8rem;
        font-size: 0.78rem; color: var(--blog-text-light);
        margin-bottom: 0.6rem;
    }
    .pch-meta i { color: var(--blog-primary); }
    .pch-title {
        font-size: 1.05rem; font-weight: 700;
        color: var(--blog-text-dark); line-height: 1.4;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2; -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .pch-excerpt {
        font-size: 0.86rem; color: var(--blog-text-light);
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2; -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .pch-read {
        margin-top: 0.8rem;
        font-size: 0.85rem; font-weight: 700;
        color: var(--blog-primary); display: inline-flex;
        align-items: center; gap: 4px;
        transition: gap 0.2s;
    }
    .pch-read:hover { gap: 8px; }

    /* ============================================================
       POSTS 4–10 — NUMBERED LIST STRIP (compact)
    ============================================================ */
    .posts-list-strip {
        background: var(--blog-glass-bg);
        backdrop-filter: blur(14px);
        border: 1px solid var(--blog-glass-border);
        border-radius: 24px;
        box-shadow: var(--blog-glass-shadow);
        overflow: hidden;
    }
    .strip-header {
        background: linear-gradient(135deg, var(--blog-secondary-dark), var(--blog-secondary));
        padding: 1.2rem 2rem;
        display: flex; align-items: center;
        justify-content: space-between;
    }
    .strip-header h3 {
        color: white; font-size: 1rem; font-weight: 700;
        display: flex; align-items: center; gap: 0.6rem;
    }
    .strip-header h3 i { color: #ffcbba; }
    .strip-count {
        background: var(--blog-primary);
        color: white; font-size: 0.78rem; font-weight: 700;
        padding: 0.3rem 0.8rem; border-radius: 20px;
    }

    .post-list-item {
        display: flex; align-items: center;
        gap: 1.2rem;
        padding: 1.1rem 2rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        text-decoration: none; color: inherit;
        transition: all 0.25s;
        position: relative;
    }
    .post-list-item:last-child { border-bottom: none; }
    .post-list-item:hover {
        background: rgba(255,107,53,0.04);
        padding-left: 2.4rem;
    }
    /* Accent line on hover */
    .post-list-item::before {
        content: '';
        position: absolute; left: 0; top: 0; bottom: 0;
        width: 4px;
        background: var(--blog-primary);
        border-radius: 0 4px 4px 0;
        opacity: 0;
        transition: opacity 0.25s;
    }
    .post-list-item:hover::before { opacity: 1; }

    /* Rank number */
    .pli-num {
        width: 36px; height: 36px;
        border-radius: 10px;
        display: flex; align-items: center; justify-content: center;
        font-size: 0.9rem; font-weight: 800;
        flex-shrink: 0;
        transition: all 0.3s;
    }
    /* top 3 get gradient, rest get grey */
    .pli-num.top { background: linear-gradient(135deg, var(--blog-primary), var(--blog-primary-dark)); color: white; box-shadow: 0 4px 12px rgba(255,107,53,0.3); }
    .pli-num.normal { background: #f0f2f5; color: #999; }
    .post-list-item:hover .pli-num.normal { background: rgba(255,107,53,0.1); color: var(--blog-primary); }

    /* Thumbnail in list */
    .pli-thumb { width: 62px; height: 56px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
    .pli-thumb-placeholder {
        width: 62px; height: 56px; border-radius: 12px;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.4rem; flex-shrink: 0;
    }

    .pli-body { flex: 1; min-width: 0; }
    .pli-cat {
        font-size: 0.72rem; font-weight: 700;
        color: var(--blog-primary); text-transform: uppercase;
        letter-spacing: 0.5px; margin-bottom: 0.2rem;
    }
    .pli-title {
        font-size: 0.97rem; font-weight: 700;
        color: var(--blog-text-dark); line-height: 1.4;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        transition: color 0.2s;
    }
    .post-list-item:hover .pli-title { color: var(--blog-primary); }
    .pli-meta {
        display: flex; align-items: center; gap: 1rem;
        font-size: 0.78rem; color: var(--blog-text-light);
        margin-top: 0.3rem;
    }
    .pli-meta i { color: var(--blog-primary); opacity: 0.7; }

    /* Right side arrow */
    .pli-arrow {
        color: #ccc; font-size: 0.85rem;
        transition: all 0.25s; flex-shrink: 0;
    }
    .post-list-item:hover .pli-arrow { color: var(--blog-primary); transform: translateX(4px); }

    /* Read-time pill */
    .read-time-pill {
        background: #f0f2f5;
        color: var(--blog-text-light);
        font-size: 0.75rem; font-weight: 600;
        padding: 0.2rem 0.7rem; border-radius: 20px;
        white-space: nowrap; flex-shrink: 0;
    }

    /* ============================================================
       NEWSLETTER CTA BANNER
    ============================================================ */
    .newsletter-banner {
        background: linear-gradient(135deg, var(--blog-secondary-dark) 0%, var(--blog-secondary) 60%, #667eea 100%);
        border-radius: 28px;
        padding: 3.5rem 4rem;
        color: white;
        display: flex; align-items: center;
        justify-content: space-between;
        gap: 3rem;
        margin-top: 3rem;
        position: relative; overflow: hidden;
        box-shadow: 0 20px 50px rgba(30,60,114,0.22);
    }
    .newsletter-banner::before {
        content: '';
        position: absolute; top: -50px; right: -50px;
        width: 220px; height: 220px;
        background: rgba(255,107,53,0.12);
        border-radius: 50%; filter: blur(40px);
    }
    .newsletter-banner::after {
        content: '';
        position: absolute; bottom: -40px; left: 30%;
        width: 160px; height: 160px;
        background: rgba(255,255,255,0.06);
        border-radius: 50%;
    }
    .nb-content { position: relative; z-index: 2; }
    .nb-tag {
        background: var(--blog-primary);
        color: white; padding: 0.3rem 0.9rem;
        border-radius: 20px; font-size: 0.75rem;
        font-weight: 700; text-transform: uppercase;
        letter-spacing: 1px; display: inline-block;
        margin-bottom: 1rem;
    }
    .nb-content h3 { font-size: 1.7rem; font-weight: 800; margin-bottom: 0.6rem; }
    .nb-content p  { font-size: 1rem; opacity: 0.85; line-height: 1.6; }
    .nb-form { position: relative; z-index: 2; flex-shrink: 0; }
    .nb-form .input-wrap {
        background: rgba(255,255,255,0.12);
        border: 1.5px solid rgba(255,255,255,0.25);
        border-radius: 50px;
        display: flex; align-items: center;
        padding: 0.4rem; backdrop-filter: blur(10px);
        min-width: 360px;
    }
    .nb-form input {
        flex: 1; background: transparent; border: none;
        outline: none; color: white;
        font-size: 0.95rem; padding: 0.75rem 1rem;
    }
    .nb-form input::placeholder { color: rgba(255,255,255,0.55); }
    .nb-form button {
        background: var(--blog-primary); color: white;
        border: none; padding: 0.75rem 1.6rem;
        border-radius: 40px; font-weight: 700;
        font-size: 0.9rem; cursor: pointer;
        transition: all 0.3s; white-space: nowrap;
    }
    .nb-form button:hover {
        background: var(--blog-primary-dark);
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(255,107,53,0.4);
    }
    @media (max-width: 900px) {
        .newsletter-banner { flex-direction: column; padding: 2.5rem 2rem; text-align: center; }
        .nb-form .input-wrap { min-width: unset; width: 100%; }
    }

    /* ============================================================
       CATEGORY TABS
    ============================================================ */
    .category-tabs {
        display: flex; gap: 0.6rem; flex-wrap: wrap;
        margin-bottom: 2rem;
    }
    .cat-tab {
        padding: 0.55rem 1.3rem;
        border-radius: 50px;
        font-size: 0.875rem; font-weight: 600;
        cursor: pointer; text-decoration: none;
        border: 1.5px solid #e0e3e8;
        color: var(--blog-text-light); background: white;
        transition: all 0.3s;
    }
    .cat-tab:hover, .cat-tab.active {
        background: var(--blog-primary); color: white;
        border-color: var(--blog-primary);
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(255,107,53,0.28);
    }

    /* ============================================================
       ANIMATIONS
    ============================================================ */
    .fade-in-up {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .fade-in-up.visible { opacity: 1; transform: translateY(0); }

    /* Stagger delay for list items */
    .post-list-item:nth-child(1)  { transition-delay: 0.05s; }
    .post-list-item:nth-child(2)  { transition-delay: 0.10s; }
    .post-list-item:nth-child(3)  { transition-delay: 0.15s; }
    .post-list-item:nth-child(4)  { transition-delay: 0.20s; }
    .post-list-item:nth-child(5)  { transition-delay: 0.25s; }
    .post-list-item:nth-child(6)  { transition-delay: 0.30s; }
    .post-list-item:nth-child(7)  { transition-delay: 0.35s; }

    @media (max-width: 768px) {
        .blog-section-hero h1 { font-size: 2rem; }
        .pfb-content { padding: 2rem; }
        .pfb-content h2 { font-size: 1.4rem; }
        .pch-image { width: 100px; }
        .post-list-item { padding: 1rem 1.2rem; gap: 0.8rem; }
        .pli-thumb, .pli-thumb-placeholder { width: 48px; height: 42px; }
        .post-list-item:hover { padding-left: 1.6rem; }
        
        /* Additional mobile improvements */
        .blog-section-hero { padding: 3rem 0 5rem; }
        .blog-section-hero-inner { padding: 0 1.5rem; }
        .hero-stats-strip { gap: 1.5rem; }
        .hstat-num { font-size: 1.5rem; }
        .hstat-label { font-size: 0.7rem; }
        
        .page-container { padding: 0 1.5rem; }
        .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
        .section-header h2 { font-size: 1.4rem; }
        .section-header p { font-size: 0.85rem; }
        
        .category-tabs { gap: 0.4rem; }
        .cat-tab { padding: 0.45rem 1rem; font-size: 0.8rem; }
        
        .post-featured-big { min-height: auto; margin-bottom: 1.5rem; }
        .pfb-content { padding: 1.5rem; }
        .pfb-content h2 { font-size: 1.3rem; }
        .pfb-excerpt { font-size: 0.9rem; }
        .pfb-meta { font-size: 0.75rem; gap: 0.8rem; }
        .pfb-read-btn { padding: 0.6rem 1.5rem; font-size: 0.85rem; }
        
        .posts-row-2 { gap: 1rem; margin-bottom: 1.5rem; }
        .post-card-h { flex-direction: column; }
        .pch-image { width: 100%; height: 180px; }
        .pch-body { padding: 1rem; }
        .pch-title { font-size: 0.95rem; }
        .pch-excerpt { font-size: 0.8rem; }
        
        .posts-list-strip { border-radius: 18px; }
        .strip-header { padding: 1rem 1.5rem; }
        .strip-header h3 { font-size: 0.9rem; }
        .post-list-item { padding: 0.9rem 1.2rem; gap: 0.6rem; }
        .pli-num { width: 30px; height: 30px; font-size: 0.8rem; }
        .pli-thumb, .pli-thumb-placeholder { width: 50px; height: 44px; }
        .pli-title { font-size: 0.9rem; }
        .pli-meta { font-size: 0.7rem; gap: 0.6rem; }
        .read-time-pill { font-size: 0.7rem; padding: 0.15rem 0.5rem; }
        
        .newsletter-banner { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
        .nb-content h3 { font-size: 1.3rem; }
        .nb-content p { font-size: 0.9rem; }
        .nb-form .input-wrap { min-width: 100%; }
        .nb-form input { font-size: 0.9rem; padding: 0.6rem 0.8rem; }
        .nb-form button { padding: 0.6rem 1.2rem; font-size: 0.85rem; }
    }

    @media (max-width: 480px) {
        .blog-section-hero h1 { font-size: 1.6rem; }
        .blog-section-hero p { font-size: 1rem; }
        .hero-stats-strip { gap: 1rem; }
        .hstat-num { font-size: 1.3rem; }
        
        .pfb-content { padding: 1.2rem; }
        .pfb-content h2 { font-size: 1.1rem; }
        .pfb-excerpt { font-size: 0.85rem; }
        .pfb-read-btn { padding: 0.5rem 1.2rem; font-size: 0.8rem; }
        
        .pch-image { height: 150px; }
        .pch-body { padding: 0.8rem; }
        .pch-title { font-size: 0.85rem; }
        .pch-excerpt { font-size: 0.75rem; }
        
        .post-list-item { padding: 0.8rem 1rem; }
        .pli-num { width: 26px; height: 26px; font-size: 0.75rem; }
        .pli-thumb, .pli-thumb-placeholder { width: 42px; height: 38px; }
        .pli-title { font-size: 0.85rem; }
        
        .newsletter-banner { padding: 1.5rem 1rem; }
        .nb-content h3 { font-size: 1.1rem; }
        .nb-form input { padding: 0.5rem 0.7rem; }
        .nb-form button { padding: 0.5rem 1rem; font-size: 0.8rem; }
    }

    /* Footer mobile adjustments for blog page */
    @media (max-width: 768px) {
        footer .footer-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        footer .footer-column {
            text-align: center;
        }
        
        footer .footer-column h3::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        footer .social-links {
            justify-content: center;
        }
        
        footer .copyright {
            font-size: 0.85rem;
            padding: 1.5rem 1rem;
        }
    }

    @media (max-width: 480px) {
        footer .footer-grid {
            gap: 1.5rem;
        }
        
        footer .footer-column h3 {
            font-size: 1.1rem;
        }
        
        footer .footer-links li {
            margin-bottom: 0.6rem;
        }
    }