    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
        --orange: #FA5301;
        --orange-dark: #d94600;
        --dark: #111111;
        --text: #666666;
        --muted: #888888;
        --white: #ffffff;
        --bg: #F8F7F4;
        --border: #e8e8e8;
        --font: 'Plus Jakarta Sans', sans-serif;
    }
    body { font-family: var(--font); background: var(--bg); color: var(--dark); }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ── PAGE BANNER ── */
    .page-banner {
        position: relative; height: 420px;
        display: flex; align-items: center; justify-content: center; overflow: hidden;
    }
    .page-banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
    .page-banner__overlay { position: absolute; inset: 0; background: rgba(10,14,28,0.75); z-index: 1; }
    .page-banner__content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
    .page-banner__title { font-size: clamp(36px, 5vw, 68px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.5px; }
    .page-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.8); }
    .page-breadcrumb a { color: var(--orange); font-weight: 700; }
    @media(max-width:768px){ .page-banner{ height:280px; } }

    /* ── MAIN LAYOUT ── */
    .blog-wrap { max-width: 1280px; margin: 75px auto 100px; padding: 0 40px; display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }

    /* ─── BLOG MAIN CONTENT ─── */
    /* Featured image */
    .blog-featured-img { width: 100%; height: 460px; object-fit: cover; border-radius: 22px; margin-bottom: 30px; display: block; }

    /* Meta row */
    .blog-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 18px; flex-wrap: wrap; }
    .meta-item { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--text); font-weight: 500; }
    .meta-item i { color: var(--orange); }
    .meta-item a { color: var(--text); transition: color .2s; }
    .meta-item a:hover { color: var(--orange); }

    /* Title */
    .blog-title { font-size: clamp(24px, 2.8vw, 38px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 26px; }

    /* Body content */
    .blog-body p { font-size: 15.5px; color: var(--text); line-height: 1.9; margin-bottom: 20px; }
    .blog-body h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin: 34px 0 14px; }
    .blog-body ul { padding-left: 22px; margin: 14px 0 18px; }
    .blog-body ul li { font-size: 15px; color: var(--text); line-height: 1.85; margin-bottom: 6px; }
    .blog-body strong { color: var(--dark); font-weight: 700; }

    /* Blockquote */
    .blog-quote { background: #fff9f7; border-left: 4px solid var(--orange); border-radius: 0 14px 14px 0; padding: 24px 28px; margin: 30px 0; }
    .blog-quote p { font-size: 15.5px; color: var(--dark); font-style: italic; font-weight: 600; line-height: 1.75; margin: 0; }
    .blog-quote .q-author { display: flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 13px; font-weight: 700; color: var(--orange); }
    .blog-quote .q-author::before { content: '—'; }

    /* 2-image row */
    .blog-img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
    .blog-img-row img { width: 100%; height: 220px; object-fit: cover; border-radius: 14px; transition: transform .4s; }
    .blog-img-row img:hover { transform: scale(1.03); }

    /* Tag & Share */
    .tag-share-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding: 22px 0; margin-top: 36px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .tags-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .tags-row .label { font-size: 13px; font-weight: 700; color: var(--dark); white-space: nowrap; }
    .tag-pill { display: inline-block; padding: 5px 14px; border-radius: 50px; border: 1.5px solid var(--border); font-size: 12.5px; font-weight: 600; color: var(--text); background: #fff; transition: all .2s; }
    .tag-pill:hover { border-color: var(--orange); color: var(--orange); }
    .share-row { display: flex; align-items: center; gap: 8px; }
    .share-row .label { font-size: 13px; font-weight: 700; color: var(--dark); white-space: nowrap; }
    .share-icon { width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--text); transition: all .2s; }
    .share-icon:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

    /* Prev/Next nav */
    .post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
    .post-nav-item { background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 18px 20px; transition: all .25s; }
    .post-nav-item:hover { border-color: var(--orange); box-shadow: 0 6px 24px rgba(250,83,1,0.1); }
    .post-nav-item.prev { text-align: left; }
    .post-nav-item.next { text-align: right; }
    .pn-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
    .post-nav-item.next .pn-label { justify-content: flex-end; }
    .pn-label i { color: var(--orange); }
    .pn-title { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.35; transition: color .2s; }
    .post-nav-item:hover .pn-title { color: var(--orange); }

    /* Related posts */
    .related-section { margin-top: 52px; }
    .related-section h3 { font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
    .related-section h3 span { color: var(--orange); }
    .related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .related-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: transform .3s, box-shadow .3s; }
    .related-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(250,83,1,0.12); }
    .related-card__img { overflow: hidden; height: 180px; }
    .related-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .related-card:hover .related-card__img img { transform: scale(1.05); }
    .related-card__body { padding: 18px 20px; }
    .related-date { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
    .related-date i { color: var(--orange); margin-right: 4px; }
    .related-card__body a.title { display: block; font-size: 15px; font-weight: 800; color: var(--dark); line-height: 1.4; margin-bottom: 10px; transition: color .2s; }
    .related-card__body a.title:hover { color: var(--orange); }
    .read-more { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; color: var(--orange); }
    .read-more i { font-size: 11px; transition: transform .2s; }
    .related-card:hover .read-more i { transform: translateX(3px); }

    /* ─── SIDEBAR ─── */
    .blog-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
    .sidebar-card { background: #fff; border-radius: 16px; padding: 26px; border: 1px solid var(--border); box-shadow: 0 2px 16px rgba(0,0,0,0.04); }
    .sidebar-card h4 { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--border); position: relative; }
    .sidebar-card h4::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: var(--orange); }

    /* Search */
    .search-box { position: relative; }
    .search-box input { width: 100%; padding: 13px 50px 13px 18px; border: 1.5px solid var(--border); border-radius: 10px; font-family: var(--font); font-size: 14px; outline: none; background: var(--bg); transition: border-color .2s; }
    .search-box input:focus { border-color: var(--orange); }
    .search-box button { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 8px; background: var(--orange); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; transition: background .2s; }
    .search-box button:hover { background: var(--orange-dark); }

    /* Recent posts */
    .recent-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
    .recent-item:last-child { border-bottom: none; padding-bottom: 0; }
    .recent-thumb { width: 70px; height: 62px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
    .recent-date { font-size: 11.5px; color: var(--muted); margin-bottom: 4px; }
    .recent-date i { color: var(--orange); margin-right: 4px; }
    .recent-info a { font-size: 13.5px; font-weight: 700; color: var(--dark); line-height: 1.4; transition: color .2s; }
    .recent-info a:hover { color: var(--orange); }

    /* Categories */
    .cat-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .cat-list li a { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; border-radius: 10px; background: var(--bg); font-size: 14px; font-weight: 600; color: var(--dark); border: 1px solid transparent; transition: all .2s; }
    .cat-list li a:hover { background: #fff3ef; border-color: rgba(250,83,1,.2); color: var(--orange); }
    .cat-list li a i { color: var(--orange); font-size: 11px; }
    .cat-list li a.active-cat { background: var(--orange); color: #fff; }
    .cat-list li a.active-cat i { color: #fff; }

    /* Tags */
    .tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag-btn { padding: 7px 16px; border-radius: 50px; border: 1.5px solid var(--border); background: #fff; font-family: var(--font); font-size: 12.5px; font-weight: 600; color: var(--text); cursor: pointer; text-decoration: none; display: inline-block; transition: all .2s; }
    .tag-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

    /* Sidebar CTA */
    .sidebar-cta { background: linear-gradient(145deg, #FA5301 0%, #d94600 100%); border-radius: 16px; padding: 32px 24px; text-align: center; position: relative; overflow: hidden; }
    .sidebar-cta::before { content: ''; position: absolute; top: -24px; right: -24px; width: 110px; height: 110px; background: rgba(255,255,255,0.1); border-radius: 50%; }
    .sidebar-cta .cta-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 20px; color: #fff; }
    .sidebar-cta h4 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
    .sidebar-cta p { font-size: 13.5px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 18px; }
    .sidebar-cta a { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--orange); padding: 11px 26px; border-radius: 50px; font-size: 14px; font-weight: 800; transition: transform .2s; }
    .sidebar-cta a:hover { transform: translateY(-2px); }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px){ .blog-wrap{ grid-template-columns: 1fr; gap: 40px; } }
    @media(max-width:768px){
        .blog-wrap{ margin: 50px auto; padding: 0 20px; }
        .page-banner{ height: 280px; }
        .blog-featured-img{ height: 240px; }
        .blog-img-row{ grid-template-columns: 1fr; }
        .related-grid{ grid-template-columns: 1fr; }
        .post-nav{ grid-template-columns: 1fr; }
    }
    
    
    
      *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
        --orange: #FA5301;
        --orange-dark: #d94600;
        --dark: #111111;
        --text: #666666;
        --muted: #888888;
        --white: #ffffff;
        --bg: #F8F7F4;
        --card-bg: #ffffff;
        --border: #e8e8e8;
        --font: 'Plus Jakarta Sans', sans-serif;
    }
    body { font-family: var(--font); background: var(--bg); color: var(--dark); }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ── BANNER ── */
    .blog-banner {
        position: relative; width: 100%; height: 420px;
        overflow: hidden; display: flex; align-items: center; justify-content: center;
    }
    .blog-banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
    .blog-banner__overlay { position: absolute; inset: 0; background: rgba(10,14,28,0.72); z-index: 1; }
    .blog-banner__content { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
    .blog-banner__title { font-size: clamp(34px, 5.5vw, 66px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.5px; }
    .blog-banner__breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.85); }
    .blog-banner__breadcrumb a { color: var(--orange); font-weight: 700; transition: opacity .2s; }
    .blog-banner__breadcrumb a:hover { opacity: 0.8; }
    @media(max-width:768px){ .blog-banner{ height:280px; } }

    /* ── LAYOUT ── */
    .blog-section { padding: 80px 0 100px; background: var(--bg); }
    .blog-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
    .blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }

    /* ── SECTION BADGE ── */
    .section-badge { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
    .section-badge h5 {
        color: var(--orange); font-size: 16px; font-weight: 700; letter-spacing: 1.5px;
        display: flex; align-items: center; gap: 10px; font-family: var(--font); margin: 0;
    }
    .section-heading {
        font-size: clamp(24px, 2.2vw, 38px); font-weight: 800; color: var(--dark);
        line-height: 1.18; margin-bottom: 36px; font-family: var(--font);
    }

    /* Filter bar */
    .filter-bar {
        display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 32px;
    }
    .filter-tag {
        display: inline-flex; align-items: center; gap: 6px;
        padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 600;
        border: 1.5px solid var(--border); background: #fff; color: var(--dark);
        transition: all .2s; cursor: pointer;
    }
    .filter-tag.active, .filter-tag:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
    .filter-tag .remove { font-size: 11px; opacity: .7; margin-left: 2px; }
    .results-count { font-size: 14px; color: var(--muted); margin-left: auto; font-weight: 500; }

    /* ── CARDS GRID 2×2 ── */
    .blog-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .blog-card {
        background: var(--card-bg); border-radius: 20px; overflow: hidden;
        box-shadow: 0 4px 24px rgba(0,0,0,0.06); transition: transform .3s, box-shadow .3s;
        display: flex; flex-direction: column; border: 1px solid transparent;
    }
    .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(250,83,1,0.14); border-color: rgba(250,83,1,0.12); }
    .blog-card__img-wrap { width: 100%; height: 210px; overflow: hidden; flex-shrink: 0; }
    .blog-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .blog-card:hover .blog-card__img-wrap img { transform: scale(1.05); }
    .blog-card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
    .blog-card__category { font-size: 12px; font-weight: 700; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
    .blog-card__title { font-size: 17px; font-weight: 800; color: var(--dark); line-height: 1.35; margin-bottom: 12px; font-family: var(--font); flex: 1; }
    .blog-card__title a { color: inherit; text-decoration: none; transition: color .2s; }
    .blog-card__title a:hover { color: var(--orange); }
    .blog-card__excerpt { font-size: 13.5px; color: var(--text); line-height: 1.75; margin-bottom: 16px; }
    .blog-card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
    .blog-card__date { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
    .blog-card__date i { color: var(--orange); font-size: 12px; }
    .blog-card__read {
        display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700;
        color: var(--dark); transition: color .2s, gap .2s;
    }
    .blog-card__read:hover { color: var(--orange); gap: 10px; }
    .blog-card__read svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

    /* No results */
    .no-results { text-align: center; padding: 60px 20px; color: var(--muted); font-size: 16px; grid-column: 1/-1; }
    .no-results i { font-size: 48px; color: var(--border); display: block; margin-bottom: 16px; }

    /* ── PAGINATION ── */
    .blog-pagination { display: flex; align-items: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
    .pg-btn {
        width: 42px; height: 42px; border-radius: 10px; border: 1.5px solid var(--border);
        background: var(--card-bg); display: flex; align-items: center; justify-content: center;
        font-size: 14px; font-weight: 700; color: var(--dark); cursor: pointer; font-family: var(--font);
        text-decoration: none; transition: all .2s;
    }
    .pg-btn:hover, .pg-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }
    .pg-btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .pg-btn.disabled { opacity: .4; pointer-events: none; }

    /* ── SIDEBAR ── */
    .blog-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
    .sidebar-widget { background: var(--card-bg); border-radius: 18px; padding: 26px 22px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); border: 1px solid var(--border); }
    .sidebar-widget__title {
        font-size: 17px; font-weight: 800; color: var(--dark); font-family: var(--font);
        margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--border);
        position: relative;
    }
    .sidebar-widget__title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: var(--orange); }

    /* Search */
    .sidebar-search { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color .2s; }
    .sidebar-search:focus-within { border-color: var(--orange); }
    .sidebar-search input { flex: 1; border: none; outline: none; padding: 12px 16px; font-size: 14px; font-family: var(--font); color: var(--dark); background: transparent; }
    .sidebar-search input::placeholder { color: var(--muted); }
    .sidebar-search button { width: 46px; height: 46px; background: var(--orange); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
    .sidebar-search button:hover { background: var(--orange-dark); }
    .sidebar-search button i { color: #fff; font-size: 15px; }

    /* Latest Posts */
    .latest-list { display: flex; flex-direction: column; gap: 16px; }
    .latest-item { display: flex; align-items: flex-start; gap: 12px; }
    .latest-item a { display: flex; align-items: flex-start; gap: 12px; width: 100%; transition: opacity .2s; }
    .latest-item a:hover { opacity: .8; }
    .latest-item a:hover .lni-title { color: var(--orange); }
    .lni-img { width: 70px; height: 60px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
    .lni-date { font-size: 11.5px; color: var(--muted); margin-bottom: 4px; display: block; }
    .lni-title { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.4; transition: color .2s; }

    /* Categories */
    .categories-list { display: flex; flex-direction: column; }
    .category-item { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--border); transition: opacity .2s; }
    .category-item:last-child { border-bottom: none; }
    .category-item:hover { opacity: .8; }
    .category-item span { font-size: 14px; font-weight: 600; color: var(--dark); transition: color .2s; }
    .category-item:hover span { color: var(--orange); }
    .cat-count { font-size: 12px; font-weight: 700; color: var(--muted); background: var(--bg); padding: 2px 10px; border-radius: 20px; transition: all .2s; }
    .category-item:hover .cat-count { background: var(--orange); color: #fff; }
    .category-item.active-cat span { color: var(--orange); }
    .category-item.active-cat .cat-count { background: var(--orange); color: #fff; }

    /* Tags */
    .tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag-pill { display: inline-block; padding: 6px 14px; border-radius: 50px; border: 1.5px solid var(--border); font-size: 12.5px; font-weight: 600; color: var(--dark); text-decoration: none; transition: all .2s; background: #fff; }
    .tag-pill:hover, .tag-pill.active-tag { background: var(--orange); border-color: var(--orange); color: #fff; }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px){ .blog-layout{ grid-template-columns: 1fr 290px; gap: 36px; } }
    @media(max-width:900px){ .blog-layout{ grid-template-columns: 1fr; } .blog-sidebar{ position: static; } }
    @media(max-width:640px){ .blog-cards-grid{ grid-template-columns: 1fr; } .blog-container{ padding: 0 20px; } .blog-section{ padding: 60px 0; } }