        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --red: #ff0000;
            --red-hover: #ff0000;
            --text: #1a1a1a;
            --text-body: #333333;
            --muted: #808080;
            --border: #e4e7eb;
            --card-border: #e8e8e8;
            --font: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            font-family: var(--font);
            background: #ffffff;
            color: var(--text-body);
            line-height: 1.5;
        }

        /* ── NAVBAR ── */
        .gi-navbar {
            background: #fff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .gi-nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .gi-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
        .gi-logo-mark {
            width: 44px; height: 44px;
            background: var(--red);
            border-radius: 4px;
            display: flex; align-items: center; justify-content: center;
        }
        .gi-logo-text { font-size: 1.1rem; font-weight: 800; color: #22262a; letter-spacing: -0.3px; line-height: 1.2; }
        .gi-logo-text span { display: block; font-weight: 400; font-size: 0.7rem; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
        .gi-nav-links { display: flex; gap: 25px; align-items: center; }
        .gi-nav-links a { text-decoration: none; color: #22262a; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 4px; }
        .gi-caret { display: inline-block; width: 0; height: 0; border-left: 3.5px solid transparent; border-right: 3.5px solid transparent; border-top: 4px solid #22262a; }
        .gi-btn-nav-cta { background: var(--red); color: #fff !important; padding: 8px 18px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; }

        /* ── HERO ── */
        .gi-hero {
            position: relative;
            height: 540px;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
        }
        .gi-hero-bg {
            position: absolute;
            inset: 0;
            background:

                url('/images/blog/hero.png') center/cover no-repeat;
        }
        .gi-hero-content {
            position: relative;
            z-index: 2;
            padding: 0 0 200px 60px;
        }
        .gi-hero-content h1 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #808080;
            letter-spacing: -0.5px;
            margin-bottom: 14px;
            line-height: 1.1;
        }
        .gi-hero-content p {
            font-size: 1rem;
            color: #808080;
            line-height: 1.6;
            margin-bottom: 28px;
            max-width: 340px;
        }
        .gi-btn-hero {
            display: inline-block;
            background: var(--red);
            color: #fff;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.88rem;
            letter-spacing: 0.8px;
            padding: 13px 26px;
            border-radius: 20px;
            text-decoration: none;
            transition: background 0.2s;
        }
        .gi-btn-hero:hover { background: var(--red-hover); }

        /* ── MAIN CONTENT AREA ── */
        .gi-blog-wrap {
            max-width: 1140px;
            margin: 0 auto;
            padding: 50px 20px 80px;
        }

        /* ── FEATURED + SIDEBAR ── */
        .gi-featured-row {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin-bottom: 70px;
            align-items: flex-start;
        }

        /* Featured article */
        .gi-featured-article {}
        .gi-featured-label {
            display: inline-block;
            background: var(--red);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1px;
            padding: 4px 10px;
            text-transform: uppercase;
            margin-bottom: 0;
            position: relative;
            z-index: 2;
        }
        .gi-featured-img-wrap {
            position: relative;
            border-radius: 6px;
            overflow: hidden;
            line-height: 0;
            margin-bottom: 20px;
        }
        .gi-featured-img-wrap .gi-badge-overlay {
            position: absolute;
            top: 0; left: 0;
            background: var(--red);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.2px;
            padding: 11px 12px;
            text-transform: uppercase;
        }
        .gi-featured-img-wrap img {
            width: 100%;
            height: 360px;
            object-fit: cover;
            display: block;
        }
        .gi-article-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 10px;
        }
        .gi-cat-tag {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--red);
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        .gi-pub-date {
            font-size: 0.8rem;
            color: var(--muted);
        }
        .gi-featured-article h2 {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1.25;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }
        .gi-featured-article p {
            font-size: 0.9rem;
            color: #555;
            line-height: 1.65;
            margin-bottom: 20px;
        }
        .gi-read-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--red);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .gi-read-link:hover { text-decoration: underline; }
        .gi-read-link svg { width: 16px; height: 16px; fill: var(--red); }

        /* ── SIDEBAR ── */
        .gi-sidebar { display: flex; flex-direction: column; gap: 20px; }

        .gi-filter-card {
            border: 1.5px solid var(--red);
            border-radius: 8px;
            padding: 20px;
                 background: #f2f2f2;
        }
        .gi-filter-card h3 {
       
            font-size: 1rem;
            font-weight: 800;
            color: var(--red);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 4px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--red);
        }
        .gi-filter-group-label {
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--muted);
            margin: 10px 0 8px;
        }
        .gi-filter-list { list-style: none; }
        .gi-filter-list li {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 7px 0;
            border-bottom: 1px solid #f2f2f2;
            cursor: pointer;
            transition: color 0.15s;
        }
        .gi-filter-list li:last-child { border-bottom: none; }
        .gi-filter-item-inner { display: flex; align-items: center; gap: 10px; }
        .gi-filter-icon { width: 18px; height: 18px; fill: var(--muted); flex-shrink: 0; }
        .gi-filter-list li.active .gi-filter-icon { fill: var(--red); }
        .gi-filter-list li span.label { font-size: 0.88rem; color: black; font-weight: 600; }
        .gi-filter-list li.active span.label { color: var(--red); font-weight: 700; }
        .gi-filter-bar { width: 3px; height: 18px; background: var(--red); border-radius: 2px; }

        .gi-cta-card {
            background: #808080;
            border-radius: 8px;
            padding: 24px 20px;
        }
        .gi-cta-card h3 {
            font-size: 1.2rem;
            font-weight: 800;
            color: #fff;
            line-height: 1.25;
            margin-bottom: 10px;
            letter-spacing: -0.2px;
        }
        .gi-cta-card p {
            font-size: 0.83rem;
            color: rgba(255,255,255,0.78);
            line-height: 1.5;
            margin-bottom: 18px;
        }
        .gi-btn-cta-outline {
            display: block;
            text-align: center;
            background: #fff;
            border: 1.5px solid rgba(255,255,255,0.7);
            color: #808080;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.8px;
            padding: 10px;
            border-radius: 20px;
            text-decoration: none;
            text-transform: uppercase;
            transition: background 0.2s;
        }
        .gi-btn-cta-outline:hover { background: rgba(255,255,255,0.12); }

        /* ── LATEST ARTICLES ── */
        .gi-latest-heading {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: -0.5px;
            margin-bottom: 30px;
            color: #808080;
        }
        .gi-articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }
        .gi-article-card {
            border: 1px solid var(--red);
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            background: #fff;
        }
        .gi-card-img-wrap {
            position: relative;
            line-height: 0;
        }
        .gi-card-img-wrap img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }
        .gi-card-num {
            position: absolute;
            bottom: 10px;
            left: 12px;
            background: #fff;
            color: var(--red);
            font-size: 0.72rem;
            font-weight: 700;
            padding: 10px 10px;
        }
        .gi-card-body { padding: 18px 18px 16px; flex: 1; display: flex; flex-direction: column; }
        .gi-card-cat {
            font-size: 0.72rem;
            font-weight: 800;
            color: var(--red);
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        .gi-card-body h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #808080;
            line-height: 1.35;
            margin-bottom: 15px;
            letter-spacing: -0.2px;
        }
        .gi-card-body p {
            font-size: 0.83rem;
            color: #666;
            line-height: 1.55;
            flex: 1;
            margin-bottom: 26px;
        }
        .gi-card-read {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--red);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.3px;

            padding-top: 12px;
        }
        .gi-card-read svg { width: 20px; height: 20px; fill: var(--red); transition: transform 0.2s; }
        .gi-card-read:hover svg { transform: translateX(3px); }

        /* ── LOAD MORE ── */
        .gi-load-more-wrap { text-align: center; padding: 10px 0 20px; }
        .gi-btn-load-more {
            display: inline-block;
            border: 1.5px solid var(--red);
            color: var(--red);
            font-size: 0.88rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            text-transform: uppercase;
            transition: background 0.2s, color 0.2s;
        }
        .gi-btn-load-more:hover { background: var(--red); color: #fff; }

        /* ── FOOTER ── */
        .gi-main-footer {
            background: #5c5e62;
            color: #fff;
            padding: 60px 0 40px;
        }
        .gi-footer-grid {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1.2fr 1fr;
            gap: 50px;
        }
        .gi-footer-logo-mark {
            width: 40px; height: 40px;
            background: var(--red);
            border-radius: 4px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 15px;
        }
        .gi-footer-desc-col p { font-size: 0.85rem; color: #e3e6e8; line-height: 1.5; margin-top: 10px; }
        .gi-footer-links-col { display: flex; justify-content: space-between; padding-top: 15px; }
        .gi-links-subgroup { display: flex; flex-direction: column; gap: 12px; }
        .gi-links-subgroup a { color: #e3e6e8; text-decoration: none; font-size: 0.88rem; }
        .gi-links-subgroup a:hover { text-decoration: underline; }
        .gi-footer-info-col h5 { font-size: 0.9rem; font-weight: 700; margin-bottom: 15px; letter-spacing: 0.5px; }
        .gi-social-row { display: flex; gap: 10px; margin-bottom: 20px; }
        .gi-social-icon { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: rgba(255,255,255,0.15); border-radius: 50%; font-size: 0.7rem; font-weight: 700; color: #fff; text-decoration: none; }
        .gi-footer-info-col address { font-style: normal; font-size: 0.75rem; color: #cbd0d4; line-height: 1.6; }
        .gi-footer-bottom {
            max-width: 1140px;
            margin: 40px auto 0;
            padding: 20px 20px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            font-size: 0.78rem;
            color: #9da3a8;
        }

        /* RESPONSIVE */
        @media (max-width: 992px) {
            .gi-nav-links { display: none; }
            .gi-featured-row { grid-template-columns: 1fr; }
            .gi-articles-grid { grid-template-columns: 1fr 1fr; }
            .gi-footer-grid { grid-template-columns: 1fr; gap: 40px; }
        }
        @media (max-width: 600px) {
            .gi-articles-grid { grid-template-columns: 1fr; }
            .gi-hero-content h1 { font-size: 2rem; }
            .gi-hero-content { padding-left: 24px; }
        }