/* ── HERO ── */
        .bl-hero {
            position: relative;
            padding: 110px 4% 80px;
            overflow: hidden;
            background: linear-gradient(160deg, #f2fae3 0%, #ffffff 45%, #e3f7fb 100%);
        }

        .bl-hero-grid {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(107, 163, 42, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(107, 163, 42, 0.07) 1px, transparent 1px);
            background-size: 52px 52px;
            mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
        }

        .bl-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(65px);
            opacity: 0.45;
            animation: blOrb 11s ease-in-out infinite;
        }

        @keyframes blOrb {

            0%,
            100% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(20px, -18px);
            }
        }

        .bl-orb-1 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, #9bd86a, transparent 72%);
            top: 4%;
            left: 1%;
            animation-delay: 0s;
        }

        .bl-orb-2 {
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, #5fd4f0, transparent 72%);
            bottom: 5%;
            right: 3%;
            animation-delay: 3s;
        }

        .bl-orb-3 {
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, #fbbf24, transparent 72%);
            top: 50%;
            right: 20%;
            animation-delay: 1.8s;
        }

        .bl-hero-inner {
            text-align: center;
            max-width: 680px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .bl-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #eaf7d8, #fff, #dff3f8);
            border: 1px solid #c8dda8;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #4e7a1a;
            box-shadow: 0 6px 20px rgba(107, 163, 42, 0.14);
        }

        .bl-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #6ba32a;
            animation: blDotPulse 2s ease infinite;
            flex-shrink: 0;
        }

        @keyframes blDotPulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.4;
            }
        }

        .bl-hero-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(38px, 5.5vw, 62px);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.06;
            color: #15230a;
            margin-bottom: 16px;
        }

        .bl-shine {
            background: linear-gradient(100deg, #4e7a1a, #1e6475, #8bc34a, #2a8fa8, #4e7a1a);
            background-size: 280% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: blShineFlow 6s ease-in-out infinite;
        }

        @keyframes blShineFlow {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .bl-hero-desc {
            font-size: 16.5px;
            color: #5a7040;
            line-height: 1.72;
            margin-bottom: 32px;
        }

        .bl-search-wrap {
            display: flex;
            justify-content: center;
        }

        .bl-search {
            display: flex;
            align-items: center;
            gap: 0;
            background: #fff;
            border: 1.5px solid #dde8cc;
            border-radius: 50px;
            padding: 6px 6px 6px 20px;
            width: 100%;
            max-width: 520px;
            box-shadow: 0 8px 28px rgba(107, 163, 42, 0.1);
        }

        .bl-search-icon {
            font-size: 18px;
            flex-shrink: 0;
            color: #8fa870;
        }

        .bl-search-input {
            flex: 1;
            border: none;
            outline: none;
            background: transparent;
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: #15230a;
            padding: 6px 12px;
        }

        .bl-search-input::placeholder {
            color: #b0c498;
        }

        .bl-search-btn {
            padding: 10px 22px;
            border-radius: 50px;
            background: linear-gradient(135deg, #6ba32a, #1e6475);
            color: #fff;
            border: none;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s;
            white-space: nowrap;
        }

        .bl-search-btn:hover {
            box-shadow: 0 6px 20px rgba(107, 163, 42, 0.35);
        }

        .bl-clear-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #fef2f2;
            color: #b91c1c;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            flex-shrink: 0;
            transition: all 0.2s;
            margin-left: 6px;
        }

        .bl-clear-btn:hover {
            background: #fecaca;
        }

        .bl-search-result-info {
            margin-top: 14px;
            font-size: 14px;
            color: #5a7040;
            background: rgba(107, 163, 42, 0.08);
            border: 1px solid #c8dda8;
            padding: 8px 18px;
            border-radius: 50px;
            display: inline-block;
        }

        /* ── MAIN ── */
        .bl-main {
            padding: 72px 0 100px;
            background: linear-gradient(180deg, #f5f7f2, #ffffff, #f5f7f2);
        }

        /* ── FEATURED CARD ── */
        .bl-featured-wrap {
            margin-bottom: 48px;
        }

        .bl-featured-card {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            border-radius: 24px;
            overflow: hidden;
            background: #fff;
            border: 1.5px solid #dde8cc;
            text-decoration: none;
            color: inherit;
            box-shadow: 0 12px 40px rgba(20, 40, 10, 0.08);
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .bl-featured-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 24px 64px rgba(107, 163, 42, 0.14);
            border-color: #c8dda8;
        }

        .bl-featured-img {
            position: relative;
            overflow: hidden;
            min-height: 320px;
        }

        .bl-featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }

        .bl-featured-card:hover .bl-featured-img img {
            transform: scale(1.06);
        }

        .bl-featured-top-bar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 18px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent);
        }

        .bl-featured-badge {
            padding: 6px 14px;
            border-radius: 50px;
            background: rgba(107, 163, 42, 0.92);
            backdrop-filter: blur(4px);
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        .bl-featured-date {
            font-size: 11.5px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
        }

        .bl-featured-body {
            padding: 36px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .bl-card-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12.5px;
            color: #8fa870;
            margin-bottom: 14px;
            flex-wrap: wrap;
        }

        .bl-meta-sep {
            opacity: 0.5;
        }

        .bl-featured-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(20px, 2.5vw, 28px);
            font-weight: 800;
            color: #15230a;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 14px;
        }

        .bl-featured-excerpt {
            font-size: 15px;
            color: #5a7040;
            line-height: 1.72;
            margin-bottom: 22px;
        }

        /* ── BLOG GRID ── */
        .bl-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            margin-bottom: 56px;
        }

        .bl-card {
            display: flex;
            flex-direction: column;
            background: #fff;
            border: 1.5px solid #dde8cc;
            border-radius: 20px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            box-shadow: 0 6px 24px rgba(20, 40, 10, 0.05);
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .bl-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 56px rgba(107, 163, 42, 0.13);
            border-color: #c8dda8;
        }

        .bl-card-img {
            position: relative;
            height: 200px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .bl-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .bl-card:hover .bl-card-img img {
            transform: scale(1.08);
        }

        /* Placeholder when no image */
        .bl-img-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #e8f5d0, #e0f4f9);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .bl-img-placeholder span {
            font-size: 40px;
            opacity: 0.6;
        }

        .bl-placeholder-lg {
            height: 100%;
        }

        .bl-img-date {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 10px 14px;
            background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
            color: rgba(255, 255, 255, 0.95);
            font-size: 11.5px;
            font-weight: 600;
        }

        .bl-card-body {
            padding: 20px 22px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .bl-card-body h3 {
            font-family: 'Sora', sans-serif;
            font-size: 16.5px;
            font-weight: 700;
            color: #15230a;
            line-height: 1.3;
            letter-spacing: -0.01em;
            margin: 10px 0 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .bl-card-body p {
            font-size: 13.5px;
            color: #5a7040;
            line-height: 1.65;
            margin-bottom: 16px;
            flex: 1;
        }

        .bl-read-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13.5px;
            font-weight: 700;
            color: #4e7a1a;
            transition: gap 0.2s ease;
        }

        .bl-featured-card:hover .bl-read-more,
        .bl-card:hover .bl-read-more {
            gap: 12px;
            color: #1e6475;
        }

        .bl-rm-arrow {
            transition: transform 0.2s ease;
        }

        .bl-featured-card:hover .bl-rm-arrow,
        .bl-card:hover .bl-rm-arrow {
            transform: translateX(4px);
        }

        /* ── PAGINATION ── */
        .bl-pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 8px;
            margin-bottom: 16px;
        }

        .bl-page-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 42px;
            height: 42px;
            padding: 0 14px;
            border-radius: 10px;
            background: #fff;
            border: 1.5px solid #dde8cc;
            color: #5a7040;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.22s ease;
            cursor: pointer;
        }

        .bl-page-btn:hover {
            background: #e8f5d0;
            border-color: #c8dda8;
            color: #4e7a1a;
        }

        .bl-page-active {
            background: linear-gradient(135deg, #6ba32a, #1e6475) !important;
            color: #fff !important;
            border-color: transparent !important;
            box-shadow: 0 4px 14px rgba(107, 163, 42, 0.3);
        }

        .bl-page-disabled {
            opacity: 0.4;
            pointer-events: none;
            cursor: default;
        }

        .bl-page-info {
            text-align: center;
            font-size: 13px;
            color: #8fa870;
            margin-top: 4px;
        }

        /* ── EMPTY STATE ── */
        .bl-empty {
            text-align: center;
            padding: 80px 20px;
            background: #fff;
            border-radius: 22px;
            border: 1.5px solid #dde8cc;
        }

        .bl-empty-icon {
            font-size: 56px;
            margin-bottom: 18px;
        }

        .bl-empty h3 {
            font-family: 'Sora', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #15230a;
            margin-bottom: 10px;
        }

        .bl-empty p {
            font-size: 15px;
            color: #5a7040;
            margin-bottom: 22px;
        }

        .bl-btn-reset {
            display: inline-flex;
            align-items: center;
            padding: 12px 28px;
            border-radius: 50px;
            background: linear-gradient(135deg, #6ba32a, #1e6475);
            color: #fff;
            text-decoration: none;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 700;
            transition: all 0.25s;
        }

        .bl-btn-reset:hover {
            box-shadow: 0 8px 24px rgba(107, 163, 42, 0.35);
            transform: translateY(-2px);
        }

        /* ── NEWSLETTER ── */
        .bl-newsletter {
            position: relative;
            padding: 80px 4%;
            overflow: hidden;
            background: linear-gradient(160deg, #0f1e0a, #0a1608);
        }

        .bl-nl-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 50% 80% at 20% 50%, rgba(139, 195, 74, 0.18), transparent),
                radial-gradient(ellipse 50% 80% at 80% 50%, rgba(30, 100, 117, 0.15), transparent);
        }

        .bl-nl-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .bl-nl-icon {
            font-size: 36px;
            margin-bottom: 12px;
        }

        .bl-nl-left h2 {
            font-family: 'Sora', sans-serif;
            font-size: clamp(22px, 3vw, 34px);
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: -0.02em;
        }

        .bl-nl-left p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.65;
        }

        .bl-nl-form {
            display: flex;
            gap: 0;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 14px;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .bl-nl-input {
            flex: 1;
            border: none;
            outline: none;
            background: transparent;
            padding: 15px 18px;
            font-family: 'DM Sans', sans-serif;
            font-size: 14.5px;
            color: #fff;
        }

        .bl-nl-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .bl-nl-btn {
            padding: 15px 24px;
            background: linear-gradient(135deg, #8bc34a, #6ba32a);
            color: #fff;
            border: none;
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s;
            white-space: nowrap;
        }

        .bl-nl-btn:hover {
            background: linear-gradient(135deg, #a3cf6a, #8bc34a);
        }

        .bl-nl-note {
            font-size: 12.5px;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ── RESPONSIVE ── */
        @media(max-width:1000px) {
            .bl-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .bl-featured-card {
                grid-template-columns: 1fr;
            }

            .bl-featured-img {
                min-height: 240px;
            }
        }

        @media(max-width:700px) {
            .bl-grid {
                grid-template-columns: 1fr;
            }

            .bl-nl-inner {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .bl-nl-form {
                flex-direction: column;
                border-radius: 14px;
            }

            .bl-nl-btn {
                border-radius: 0 0 10px 10px;
            }
        }

        @media(max-width:480px) {
            .bl-featured-body {
                padding: 22px;
            }

            .bl-pagination {
                gap: 5px;
            }

            .bl-page-btn {
                min-width: 36px;
                height: 36px;
                font-size: 13px;
                padding: 0 10px;
            }
        }