/* ── Hero ──────────────────────────────────────────── */
    .blog-hero {
        padding: 64px 0 56px;
        background: #f8faf8;
        border-bottom: 1px solid #e8eee8;
        position: relative;
        overflow: hidden;
    }
    .blog-hero::before {
        content: '';
        position: absolute; top: 0; left: 0; right: 0; height: 4px;
        background: linear-gradient(90deg, #FFDE00 0%, #009B77 50%, #FFDE00 100%);
    }
    .blog-hero::after {
        content: '';
        position: absolute; bottom: -60px; right: -60px;
        width: 240px; height: 240px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,222,0,.12) 0%, transparent 70%);
        pointer-events: none;
    }
    .blog-hero__inner { position: relative; z-index: 1; }
    .blog-hero__label {
        display: inline-flex; align-items: center; gap: 7px;
        background: #fff; color: #009B77;
        font-size: .72rem; font-weight: 800; letter-spacing: 1.4px;
        text-transform: uppercase; padding: 5px 14px;
        border-radius: 20px; margin-bottom: 18px;
        border: 1.5px solid #c8ead8;
        box-shadow: 0 1px 6px rgba(0,155,119,.08);
    }
    .blog-hero__label i { color: #FFDE00; font-size: .65rem; }
    .blog-hero__title {
        font-size: 2.6rem; font-weight: 800; color: #0A1F0D;
        line-height: 1.18; margin-bottom: 14px;
    }
    .blog-hero__title span {
        position: relative; display: inline-block;
    }
    .blog-hero__title span::after {
        content: '';
        position: absolute; left: 0; bottom: 2px; right: 0; height: 8px;
        background: #FFDE00; z-index: -1; border-radius: 3px;
    }
    .blog-hero__subtitle { font-size: 1rem; color: #5a7060; line-height: 1.7; max-width: 520px; }
    .blog-hero__stats { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
    .blog-hero__stat {
        display: flex; align-items: center; gap: 10px;
        background: #fff; padding: 10px 18px; border-radius: 10px;
        border: 1px solid #e8eee8; box-shadow: 0 1px 6px rgba(10,31,13,.04);
    }
    .blog-hero__stat-num { font-size: 1.5rem; font-weight: 800; color: #0A1F0D; }
    .blog-hero__stat-lbl { font-size: .75rem; color: #8aaa90; text-transform: uppercase; letter-spacing: .7px; font-weight: 600; }
    .blog-hero__stat i { font-size: 1.1rem; color: #FFDE00; }

    /* ── Body ──────────────────────────────────────────── */
    .blog-page { padding: 48px 0 80px; background: #f4f7f4; }
    .blog-layout { display: grid; grid-template-columns: 1fr 272px; gap: 36px; align-items: start; }
    @media (max-width: 991px) { .blog-layout { grid-template-columns: 1fr; } }

    /* ── Filter bar ────────────────────────────────────── */
    .blog-filterbar { display: flex; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
    .filter-badge {
        display: inline-flex; align-items: center; gap: 7px;
        background: #fff3b0; color: #7a6400;
        padding: 6px 14px; border-radius: 20px;
        font-size: .82rem; font-weight: 700;
        border: 1.5px solid #f0d800;
    }
    .filter-badge a { color: #7a6400; text-decoration: none; font-weight: 900; margin-left: 4px; }
    .blog-filterbar__count { font-size: .88rem; color: #7a9080; }
    .blog-filterbar__count strong { color: #0A1F0D; }

    /* ── Post list ─────────────────────────────────────── */
    .blog-list { display: flex; flex-direction: column; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 20px rgba(10,31,13,.06); }

    .blog-list-item {
        display: flex; align-items: flex-start; gap: 20px;
        padding: 24px 28px; border-bottom: 1px solid #f0f5f0;
        text-decoration: none; position: relative;
        transition: background .15s;
    }
    .blog-list-item:last-child { border-bottom: none; }
    .blog-list-item:hover { background: #f9fbf9; }
    .blog-list-item::before {
        content: ''; position: absolute; left: 0; top: 0; bottom: 0;
        width: 3px; background: transparent; transition: background .15s;
    }
    .blog-list-item:hover::before { background: #FFDE00; }

    .blog-list-item__num {
        min-width: 34px; height: 34px; border-radius: 8px;
        background: #f0f5f0; color: #b0c8b0;
        display: flex; align-items: center; justify-content: center;
        font-size: .72rem; font-weight: 800; flex-shrink: 0; margin-top: 2px;
        transition: .15s;
    }
    .blog-list-item:hover .blog-list-item__num { background: #FFDE00; color: #0A1F0D; }

    .blog-list-item__body { flex: 1; min-width: 0; }
    .blog-list-item__cat {
        display: inline-block; background: #eef7f2; color: #009B77;
        font-size: .7rem; font-weight: 700; padding: 2px 10px;
        border-radius: 20px; margin-bottom: 7px;
        text-transform: uppercase; letter-spacing: .5px;
    }
    .blog-list-item__title {
        font-size: 1rem; font-weight: 700; color: #0A1F0D;
        margin-bottom: 5px; line-height: 1.4;
        white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .blog-list-item:hover .blog-list-item__title { color: #009B77; }
    .blog-list-item__summary {
        font-size: .86rem; color: #7a9080; line-height: 1.55;
        display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
        margin-bottom: 10px;
    }
    .blog-list-item__meta {
        display: flex; align-items: center; gap: 14px;
        font-size: .76rem; color: #b0c0b0; flex-wrap: wrap;
    }
    .blog-list-item__meta span { display: flex; align-items: center; gap: 4px; }
    .blog-list-item__meta i { color: #009B77; font-size: .65rem; }
    .blog-list-item__tag {
        background: #f4f7f4; color: #7a9080;
        padding: 1px 8px; border-radius: 10px; font-size: .72rem;
    }

    .blog-list-item__arrow {
        min-width: 30px; height: 30px; border-radius: 50%;
        background: #f0f5f0; color: #c8d8c8;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0; margin-top: 3px; transition: .15s;
    }
    .blog-list-item:hover .blog-list-item__arrow { background: #0A1F0D; color: #FFDE00; }

    /* ── Sidebar ───────────────────────────────────────── */
    .sidebar-widget {
        background: #fff; border-radius: 14px; overflow: hidden;
        box-shadow: 0 2px 20px rgba(10,31,13,.05); margin-bottom: 20px;
    }
    .sidebar-widget__head {
        padding: 13px 20px; font-size: .85rem; font-weight: 700;
        display: flex; align-items: center; gap: 8px;
        background: #f8faf8; border-bottom: 2px solid #FFDE00;
        color: #0A1F0D;
    }
    .sidebar-widget__head i { color: #009B77; }
    .sidebar-widget__body { padding: 6px 0; }

    .cat-item {
        display: flex; align-items: center; justify-content: space-between;
        padding: 10px 20px; border-bottom: 1px solid #f4f7f4;
        text-decoration: none; transition: background .12s;
    }
    .cat-item:last-child { border-bottom: none; }
    .cat-item:hover, .cat-item.active { background: #f4fbf7; }
    .cat-item__name { font-size: .88rem; color: #3a5040; font-weight: 500; }
    .cat-item:hover .cat-item__name, .cat-item.active .cat-item__name { color: #009B77; font-weight: 700; }
    .cat-item__count {
        background: #eef7f2; color: #009B77;
        font-size: .7rem; font-weight: 800; padding: 2px 9px; border-radius: 10px;
    }
    .cat-item.active .cat-item__count { background: #FFDE00; color: #0A1F0D; }

    /* ── Pagination ────────────────────────────────────── */
    .blog-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 28px; flex-wrap: wrap; }
    .blog-pagination a, .blog-pagination span {
        display: inline-flex; align-items: center; justify-content: center;
        width: 36px; height: 36px; border-radius: 8px;
        font-size: .88rem; font-weight: 700; text-decoration: none;
        border: 1.5px solid #dce8dc; color: #5a7060; background: #fff; transition: .15s;
    }
    .blog-pagination a:hover { background: #FFDE00; color: #0A1F0D; border-color: #FFDE00; }
    .blog-pagination span.active { background: #0A1F0D; color: #FFDE00; border-color: #0A1F0D; }
    .blog-pagination span.dots { border: none; color: #c0d0c0; background: none; cursor: default; }

    /* ── Empty ─────────────────────────────────────────── */
    .blog-empty {
        text-align: center; padding: 60px 20px;
        background: #fff; border-radius: 14px; color: #b0c0b0;
    }
    .blog-empty i { font-size: 2.5rem; display: block; margin-bottom: 12px; color: #d8e8d8; }