/* Blog Page Specific Styles */
    .blog-details-section {
        padding: clamp(50px,7vw,80px) 0;
        background-color: #ffffff;
        font-family: 'Inter', sans-serif; /* Ensuring Inter for all body text */
    }

    /* Featured Header */
    .blog-header {
        max-width: 900px;
        margin: 0 auto 50px auto;
        text-align: center;
    }

    
    .blog-category {
        color: var(--accent-green);
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 0.9rem;
    }

    .blog-main-title {
        font-family: 'Clash Grotesk', sans-serif;
        font-size: clamp(2rem, 5vw, 3.5rem);
        color: var(--primary-green);
        font-weight: 700;
        margin-top: 15px;
        line-height: 1.2;
    }

    .blog-meta {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 25px;
        color: #666;
        font-size: 0.95rem;
    }

    /* Main Content Layout */
    .featured-image-wrapper {
        width: 100%;
        height: 500px;
        border-radius: 30px;
        overflow: hidden;
        margin-bottom: 60px;
    }

    .featured-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .blog-article-content {
        font-size: 1.15rem;
        line-height: 1.9;
        color: var(--text-color);
    }

    .blog-article-content p {
        margin-bottom: 30px;
    }

    .blog-article-content h3 {
        font-family: 'Clash Grotesk', sans-serif;
        color: var(--primary-green);
        font-size: 2rem;
        margin-top: 50px;
        margin-bottom: 20px;
    }

.blog-article-content img {
    max-width: 100%;
    height: auto !important;
    max-height: 500px;   
    object-fit: contain;
    display: block;
    margin: 20px auto;
    border-radius: 16px;
}

    /* Elegant Pull Quote */
    .plant-quote {
        margin: 50px 0;
        padding: 40px;
        background-color: #f9fbf9;
        border-left: 5px solid var(--light-green);
        border-radius: 0 20px 20px 0;
        font-style: italic;
        font-size: 1.4rem;
        color: var(--primary-green);
    }

    /* Sidebar Styling */
    .blog-sidebar {
        position: sticky;
        top: 160px;
    }

    .sidebar-widget {
        background: #fcfdfc;
        border: 1px solid #edf2ef;
        padding: 30px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .widget-title {
        font-family: 'Clash Grotesk', sans-serif;
        color: var(--primary-green);
        font-size: 1.3rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .related-post-item {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        text-decoration: none;
        color: inherit;
        transition: 0.3s;
    }

    .related-post-item:hover {
        color: var(--accent-green);
    }

    .related-thumb {
        width: 70px;
        height: 70px;
        border-radius: 10px;
        object-fit: cover;
    }

    @media (max-width: 992px) {
        .featured-image-wrapper { height: 350px; }
        .blog-sidebar { margin-top: 60px; }
    }