        body {
            font-family: 'Segoe UI', sans-serif;
            background: #f6f8f3;
            color: #1f2937;
        }

        /* Hero */
        .blog-hero {
            position: relative;
            height: 420px;
            overflow: hidden;
        }

        .blog-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            /* background: linear-gradient(to bottom, rgba(0, 0, 0, .25), rgba(0, 0, 0, .65)); */
        }

        .hero-content {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
            color: #fff;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: #1b7f2a;
            padding: 8px 16px;
            border-radius: 999px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .hero-content h1 {
            font-size: 40px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 16px;
            max-width: 900px;
        }

        .hero-meta {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            color: #e8f5e6;
            font-weight: 600;
        }

        .hero-meta i {
            margin-right: 8px;
        }

        /* Layout */
        .blog-section {
            padding: 56px 0;
        }

        .article-card {
            background: #fff;
            border-radius: 22px;
            padding: 36px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
        }

        .article-card p {
            font-size: 17px;
            line-height: 1.9;
            color: #4b5563;
            margin-bottom: 10px;
        }

        .article-card h2 {
            font-size: 24px;
            font-weight: 800;
            margin: 34px 0 18px;
            color: #111827;
        }

        .article-card h3 {
            font-size: 25px;
            font-weight: 800;
            margin: 18px 0 18px;
            color: #111827;
        }

        .article-card ul {
            padding-left: 20px;
            margin-bottom: 24px;
        }

        .article-card li {
            margin-bottom: 10px;
            color: #374151;
            line-height: 1.8;
        }

        /* Quote */
        .quote-box {
            background: #eef7ea;
            border-left: 6px solid #1b7f2a;
            padding: 24px;
            border-radius: 16px;
            margin: 34px 0;
        }

        .quote-box p {
            margin: 0;
            font-size: 20px;
            font-style: italic;
            color: #14532d;
            font-weight: 700;
        }

        /* Share */
        .share-row {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-top: 34px;
            padding-top: 24px;
            border-top: 1px solid #e5e7eb;
        }

        .share-btn {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #1b7f2a;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: .2s ease;
        }

        .share-btn:hover {
            transform: translateY(-2px);
            background: #14651f;
            color: #fff;
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 90px;
        }

        .sidebar-card {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
            margin-bottom: 24px;
        }

        .sidebar-title {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 18px;
        }

        .recent-post {
            display: flex;
            gap: 14px;
            margin-bottom: 18px;
        }

        .recent-post:last-child {
            margin-bottom: 0;
        }

        .recent-post img {
            width: 86px;
            height: 86px;
            border-radius: 12px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .recent-post h6 {
            margin: 0 0 6px;
            font-size: 15px;
            line-height: 1.4;
            font-weight: 700;
        }

        .recent-post a {
            text-decoration: none;
            color: #111827;
        }

        .recent-post a:hover {
            color: #1b7f2a;
        }

        .recent-post span {
            color: #6b7280;
            font-size: 13px;
            font-weight: 600;
        }

        /* Newsletter */
        .newsletter {
            background: linear-gradient(135deg, #0f6b1f, #14852b);
            color: #fff;
        }

        .newsletter p {
            color: #e7f3e2;
        }

        .newsletter .form-control {
            height: 50px;
            border: none;
            border-radius: 12px;
        }

        .newsletter .btn {
            height: 50px;
            border-radius: 12px;
            font-weight: 700;
        }

        /* CTA */
        .donation-cta {
            background: linear-gradient(135deg, #0f6b1f, #14852b);
            border-radius: 24px;
            padding: 34px;
            color: #fff;
            margin-top: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .donation-cta h3 {
            font-size: 30px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .donation-cta p {
            margin: 0;
            color: #e7f3e2;
        }

        .donation-cta .btn {
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 800;
        }

        /* Mobile */
        @media (max-width: 991px) {

            .hero-content h1 {
                font-size: 36px;
            }

            .sidebar {
                position: static;
                margin-top: 28px;
            }
        }

        @media (max-width: 767px) {

            .blog-hero {
                height: 320px;
            }

            .hero-content h1 {
                font-size: 28px;
            }

            .article-card {
                padding: 22px;
            }

            .article-card h2 {
                font-size: 24px;
            }

            .article-card h3 {
                font-size: 19px;
            }

            .article-card p {
                font-size: 16px;
            }

            .donation-cta h3 {
                font-size: 24px;
            }
        }

        
/* Sidebar */
.blog-sidebar{
    position: sticky;
    top: 20px;
}

.sidebar-card{
    background:#f5f7f2;
    border:1px solid #e2e8d8;
    border-radius:16px;
    padding:18px;
    margin-bottom:22px;
}

.search-card{
    padding:14px;
}

.search-box{
    position:relative;
}

.search-box input{
    width:100%;
    height:48px;
    border:1px solid #d5ddcc;
    border-radius:12px;
    padding:0 48px 0 16px;
    font-size:14px;
    outline:none;
    background:#fff;
}

.search-box input:focus{
    border-color:#2e8b3c;
    box-shadow:0 0 0 3px rgba(46,139,60,.12);
}

.search-box button{
    position:absolute;
    right:6px;
    top:6px;
    width:36px;
    height:36px;
    border:none;
    border-radius:10px;
    background:#fff;
    color:#6b7280;
}

.sidebar-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:18px;
    color:#1f2937;
    display:flex;
    align-items:center;
    gap:10px;
}

.sidebar-title i{
    color:#2e8b3c;
}

.category-list{
    list-style:none;
    padding:0;
    margin:0;
}

.category-list li{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 0;
}

.category-list li:last-child{
    border-bottom:none;
}

.category-list a{
    text-decoration:none;
    color:#2f3a2f;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:12px;
    transition:all .2s ease;
}

.category-list a i{
    width:20px;
    text-align:center;
    color:#2e8b3c;
}

.category-list a:hover{
    color:#2e8b3c;
    transform:translateX(3px);
}

.count{
    width:34px;
    height:34px;
    border-radius:50%;
    border:2px solid #8ab58f;
    color:#2e8b3c;
    font-weight:700;
    font-size:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef6ea;
}

/* Recent posts */
.recent-post{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.post-item{
    display:flex;
    gap:14px;
    align-items:flex-start;
}

.post-item img{
    width:74px;
    height:74px;
    border-radius:12px;
    object-fit:cover;
    flex-shrink:0;
}

.post-content h6{
    margin:0 0 6px;
    font-size:15px;
    line-height:1.35;
    font-weight:700;
}

.post-content h6 a{
    color:#1f2937;
    text-decoration:none;
}

.post-content h6 a:hover{
    color:#2e8b3c;
}

.post-content span{
    color:#7b8576;
    font-size:13px;
    font-weight:600;
}

/* Mobile */
@media (max-width: 991px){
    .blog-sidebar{
        position:static;
        margin-top:24px;
    }
}

/* Newsletter card */
.newsletter-card{
    background:linear-gradient(135deg,#0f6b1f 0%, #138a2b 55%, #0c7a22 100%);
    border:none;
    color:#fff;
    padding:22px 18px;
    overflow:hidden;
    position:relative;
}

.newsletter-card::before{
    content:"";
    position:absolute;
    inset:-40px -10px auto auto;
    width:140px;
    height:140px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    filter:blur(2px);
}

.newsletter-title{
    font-size:22px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:10px;
    color:#fff;
}

.newsletter-text{
    color:rgba(255,255,255,.88);
    font-size:14px;
    line-height:1.6;
    margin-bottom:18px;
    max-width:260px;
}

.newsletter-input{
    position:relative;
}

.newsletter-input input{
    width:100%;
    height:52px;
    border:none;
    border-radius:12px;
    padding:0 58px 0 16px;
    font-size:14px;
    background:#ffffff;
    color:#1f2937;
    outline:none;
    box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.newsletter-input input::placeholder{
    color:#8b948b;
}

.newsletter-input input:focus{
    box-shadow:0 0 0 4px rgba(255,255,255,.18);
}

.newsletter-input button{
    position:absolute;
    right:6px;
    top:6px;
    width:40px;
    height:40px;
    border:none;
    border-radius:10px;
    background:#eef7ec;
    color:#138a2b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    cursor:pointer;
    transition:all .2s ease;
}

.newsletter-input button:hover{
    background:#dff0da;
    transform:translateY(-1px);
}

.newsletter-message{
    margin-top:12px;
    font-size:13px;
    font-weight:600;
    color:#e9f8e6;
    display:none;
}

/* Impact Banner */
.impact-banner{
    background:#0f6b1f;
    border-top:2px solid #d7e5d0;
    border-bottom:2px solid #d7e5d0;
    border-radius: 20px;
    padding: 20px ;
}

.impact-banner-inner{
    min-height:88px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:14px 0;
}

.impact-content{
    display:flex;
    align-items:center;
    gap:18px;
}

.impact-icon{
    position:relative;
    width:54px;
    height:54px;
    color:#ffffff;
    flex-shrink:0;
}

.impact-icon .fa-heart{
    position:absolute;
    top:-2px;
    left:14px;
    font-size:28px;
}

.impact-icon .hand-icon{
    position:absolute;
    bottom:0;
    left:0;
    font-size:40px;
}

.impact-text h2{
    margin:0;
    color:#ffffff;
    font-size:28px;
    line-height:1.05;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.3px;
}

.impact-text p{
    margin:6px 0 0;
    color:#e7f3e2;
    font-size:16px;
    font-weight:500;
}

.impact-btn{
    background:#ffffff;
    color:#0f6b1f;
    text-decoration:none;
    font-weight:800;
    padding:14px 34px;
    border-radius:8px;
    min-width:180px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
    transition:all .25s ease;
}

.impact-btn:hover{
    background:#f3f7f0;
    color:#0f6b1f;
    transform:translateY(-2px);
}

/* Tablet */
@media (max-width: 991px){
    .impact-text h2{
        font-size:22px;
    }

    .impact-text p{
        font-size:15px;
    }

    .impact-btn{
        min-width:160px;
        padding:12px 24px;
    }
}

/* Mobile */
@media (max-width: 767px){
    .impact-banner-inner{
        flex-direction:column;
        align-items:flex-start;
        padding:18px 0;
    }

    .impact-content{
        align-items:flex-start;
    }

    .impact-text h2{
        font-size:20px;
    }

    .impact-btn{
        width:100%;
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    flex-wrap: wrap;
    background-color: transparent !important;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffd54f;
}

.breadcrumb span {
    opacity: 0.8;
}

.breadcrumb .active {
    color: #ffd54f;
    /* color: #008035; */
    font-weight: 500;
}