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

:root {
    --red: #ff0000;
    --red-hover: #ff0000;
    --text: #111111;
    --text-body: #333333;
    --muted: #6c757d;
    --border: #e4e7eb;
    --font: "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

/* ── 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;
}

/* ── ARTICLE WRAPPER ── */
.gi-article-page {
    max-width: 1260px;
    margin: 0 auto;
    padding: 50px 24px 80px;
}

/* Category tag */
.gi-art-cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

/* Title */
.gi-art-title {
    font-size: 2.15rem;
    font-weight: 700;
    color: #808080;
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

/* Meta row */
.gi-art-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 18px;
    padding-top: 18px;
    border-bottom: 1px solid var(--red);
    border-top: 1px solid var(--red);
    margin-bottom: 30px;
}
.gi-art-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    color: var(--muted);
}
.gi-art-meta-item svg {
    width: 16px;
    height: 16px;
    fill: var(--red);
    flex-shrink: 0;
}

/* Hero image */
.gi-art-hero-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-bottom: 32px;
}

/* Body text */
.gi-art-body {
    font-size: 0.97rem;
    color: var(--text-body);
    line-height: 1.75;
}
.gi-art-body p {
    margin-bottom: 18px;
}

/* Section heading */
.gi-art-h2 {
    font-size: 1.55rem;
    font-weight: 600;
    color: #808080;
    letter-spacing: -0.2px;
    margin: 36px 0 14px;
    text-transform: uppercase;
}

/* Numbered list */
.gi-art-numlist {
    list-style: none;
    margin: 16px 0 20px;
}
.gi-art-numlist li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.6;
}
.gi-art-numlist li .num {
    font-weight: 800;
    color: var(--red);
    font-size: 0.88rem;
    min-width: 24px;
    margin-top: 2px;
}
.gi-art-numlist li .kw {
    font-weight: 700;
    color: var(--red);
}

/* Blockquote */
.gi-art-blockquote {
    border-left: none;
    padding: 28px 0 10px;
    margin: 32px 0 28px;
}
.gi-art-blockquote .quote-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1.4;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
}
.gi-art-blockquote .quote-attr {
    font-size: 0.8rem;
    color: var(--muted);
    font-style: normal;
}

/* Stats row */
.gi-stats-row {
    display: flex;
    gap: 12px;
    margin: 28px 0 36px;
}

.gi-stat-box {
    flex: 1;
    padding: 22px 28px;
    background: white;
    border: 1.5px solid var(--red);
    border-radius: 16px;
}



.gi-stat-box .stat-val {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1.1;
    margin-bottom: 5px;
}

.gi-stat-box .stat-label {
    font-size: 0.82rem;
    color: black;
    font-weight: 700;
}
/* CTA Banner */
.gi-cta-banner {
    background: #cbd0d4;
    border-radius: 8px;
    padding: 34px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
}
.gi-cta-banner-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 8px;
}
.gi-cta-banner-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}
.gi-btn-cta-red {
    background: var(--red);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 13px 22px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
    transition: background 0.2s;
    flex-shrink: 0;
}
.gi-btn-cta-red:hover {
    background: var(--red-hover);
}

/* ── RELATED ARTICLES ── */
.gi-related-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px 80px;
}
.gi-related-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 36px;
}
.gi-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gi-rel-card {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.gi-rel-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}
.gi-rel-card-body {
    padding: 18px 18px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.gi-rel-card-cat {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.gi-rel-card-body h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 9px;
}
.gi-rel-card-body p {
    font-size: 0.83rem;
    color: #666;
    line-height: 1.55;
    flex: 1;
    margin-bottom: 16px;
}
.gi-rel-read {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-body);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}
.gi-rel-read svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s;
}
.gi-rel-read:hover svg {
    transform: translateX(3px);
}

/* ── 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-related-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gi-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 640px) {
    .gi-art-title {
        font-size: 1.6rem;
    }
    .gi-related-grid {
        grid-template-columns: 1fr;
    }
    .gi-cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .gi-stats-row {
        grid-template-columns: 1fr;
    }
    .gi-stat-box:first-child {
        border-right: none;
        border-bottom: 1.5px solid var(--red);
    }
}
