   .blog-reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.7s ease-out;
    }
    .blog-reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    .blog-container {
        max-width: 1200px;
        margin: 40px auto 80px;
        padding: 0 20px;
        font-family: 'Segoe UI', Roboto, sans-serif;
    }

    /* Featured Post Styling */
    .featured-post {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        background: #f8faff;
        border-radius: 30px;
        padding: 20px;
        margin-bottom: 60px;
        border: 1px solid #eef2f6;
        align-items: center;
        text-decoration: none;
        color: inherit;
        transition: 0.3s;
    }
    .featured-post:hover { border-color: #1a73e8; }

    .featured-img {
        width: 100%;
        height: 250px;
        background: #ddd url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=800&q=80') center/cover;
        border-radius: 20px;
    }

    .featured-content h1 {
        font-size: 1.8rem;
        margin: 15px 0;
        line-height: 1.2;
        color: #111;
    }

    /* Blog Grid */
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 40px;
    }

    .blog-card {
        text-decoration: none;
        color: inherit;
        display: flex;
        flex-direction: column;
    }

    .blog-card:hover .blog-card-img { transform: scale(1.03); }

    .blog-card-img-wrapper {
        border-radius: 20px;
        overflow: hidden;
        height: 200px;
        margin-bottom: 15px;
    }

    .blog-card-img {
        width: 100%;
        height: 100%;
        background-color: #eee;
        background-position: center;
        background-size: cover;
        transition: 0.5s;
    }

    .category-pill {
        display: inline-block;
        padding: 4px 12px;
        background: #e8f0fe;
        color: #1a73e8;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .blog-card h3 {
        font-size: 1.3rem;
        margin-bottom: 5px;
        line-height: 1.3;
        color: #111;
    }

    .blog-meta {
        font-size: 0.85rem;
        color: #888;
        margin-top: 10px;
    }

    /* The "See More" link style */
    .read-more-arrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #1a73e8;
        font-weight: 700;
        font-size: 0.95rem;
        margin-top: 15px;
        transition: 0.3s;
    }

    .read-more-arrow svg {
        transition: transform 0.3s ease;
    }

    /* Trigger animation when the parent card is hovered */
    .blog-card:hover .read-more-arrow svg,
    .featured-post:hover .read-more-arrow svg {
        transform: translateX(6px);
    }

    .blog-card:hover .read-more-arrow {
        color: #0d47a1;
    }

    .blog-card-content {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    /* Desktop Adjustments */
    @media (min-width: 850px) {
        .featured-post { grid-template-columns: 1.2fr 0.8fr; padding: 40px; }
        .featured-img { height: 350px; }
        .featured-content h1 { font-size: 2.5rem; }
    }


    
    /* ----------------BLOG POST ---------------------*/
    .article-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 20px 15px 80px; /* Reduced for mobile */
        font-family: 'Segoe UI', Roboto, sans-serif;
        line-height: 1.7;
        color: #333;
    }

    /* Article Header */
    .article-header {
        text-align: left; /* Better for mobile readability */
        margin-bottom: 30px;
    }

    .article-category {
        display: inline-block;
        background: #e8f0fe;
        color: #1a73e8;
        padding: 4px 12px;
        border-radius: 6px;
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    .article-title {
        font-size: clamp(1.75rem, 7vw, 3rem);
        font-weight: 800;
        line-height: 1.2;
        color: #111;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .article-meta {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #777;
        font-size: 0.85rem;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
        margin-bottom: 25px;
    }

    .author-img {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: #eee;
    }

    /* Share Bar - Horizontal on Mobile, Sticky on Desktop */
    .share-bar {
        display: flex;
        gap: 10px;
        margin-bottom: 30px;
    }

    .share-btn {
        flex: 1; /* Equal width on mobile */
        height: 40px;
        border-radius: 10px;
        
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        font-weight: 700;
        color: #555;
        text-decoration: none;
    }

    /* Featured Image */
    .article-featured-img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        margin-bottom: 35px;
    }

    /* Body Content */
    .article-content {
        font-size: 1.1rem;
        color: #444;
    }

    .article-content h2 {
        font-size: 1.5rem;
        color: #111;
        margin: 35px 0 15px;
        font-weight: 800;
    }

    .article-content p {
        margin-bottom: 20px;
    }

    .article-content blockquote {
        border-left: 4px solid #1a73e8;
        padding: 10px 0 10px 20px;
        font-style: italic;
        font-size: 1.2rem;
        color: #111;
        margin: 30px 0;
        background: #f8faff;
        border-radius: 0 15px 15px 0;
    }

    /* DESKTOP ENHANCEMENTS */
    @media (min-width: 1100px) {
        .article-container { padding-top: 60px; }
        .article-header { text-align: center; }
        .article-meta { justify-content: center; border-bottom: none; }
        
        .share-bar {
            position: fixed;
            left: 50%;
            margin-left: -520px;
            top: 200px;
            flex-direction: column;
            width: 50px;
        }
        .share-btn { width: 45px; height: 45px; border-radius: 50%; }
    }

    /* Newsletter Box Mobile */
    .blog-newsletter {
        background: #f8faff;
        border-radius: 20px;
        padding: 30px 20px;
        text-align: center;
        margin-top: 50px;
        border: 1px solid #eef2f6;
    }
    .news-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    @media (min-width: 600px) {
        .news-form { flex-direction: row; }
    }