/* =====================================================================
   Baghdad Chamber of Commerce — Desktop (institutional) interface
   Independent from the mobile PWA stylesheet (rtl/css/style.css).
   Written with CSS logical properties so a single sheet serves RTL + LTR.
   ===================================================================== */

/* ---- Design tokens -------------------------------------------------- */
:root {
    /* Brand navy (kept from BCC identity) */
    --navy-900: #081636;
    --navy-800: #0B2A6B;
    --navy-700: #143A8A;
    --navy-600: #1F4FB4;

    /* Ink / neutrals */
    --ink-900: #0F172A;
    --ink-800: #1E293B;
    --ink-600: #475569;
    --ink-500: #64748B;
    --ink-400: #94A3B8;

    --line:      #E2E8F0;
    --line-soft: #EEF2F7;
    --bg:        #F4F6FA;
    --bg-2:      #ECF0F6;
    --surface:   #FFFFFF;

    /* Official accents */
    --accent:    #0369A1;   /* links / secondary CTA */
    --accent-700:#075985;
    --gold-600:  #9A7B2E;
    --gold-500:  #B08A3E;
    --gold-300:  #D9C38A;
    --gold-100:  #F3ECD9;

    --success:   #15803D;
    --danger:    #B91C1C;

    /* Radii — restrained, authoritative (not pill-shaped) */
    --r-xs: 4px;
    --r-sm: 6px;
    --r:    10px;
    --r-lg: 14px;

    /* Shadows — subtle, never flashy */
    --shadow-1: 0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
    --shadow-2: 0 6px 18px rgba(11,42,107,.08), 0 2px 6px rgba(11,42,107,.05);
    --shadow-3: 0 18px 48px rgba(8,22,54,.16);

    --container: 1320px;
    --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---- Reset / base --------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink-800);
    font-family: 'Tajawal', 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html[lang="en"] body {
    font-family: 'Source Sans 3', 'Tajawal', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cairo', 'Lexend', system-ui, sans-serif;
    color: var(--ink-900);
    line-height: 1.3;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.01em;
}
html[lang="en"] h1, html[lang="en"] h2,
html[lang="en"] h3, html[lang="en"] h4, html[lang="en"] h5 {
    font-family: 'Lexend', 'Cairo', system-ui, sans-serif;
}

p  { margin: 0; }
a  { color: var(--accent); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--accent-700); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: var(--r-xs);
}

/* Tabular figures for any numeric data (prices, dates, counters) */
.tnum, .gov-price, .gov-date, table td, table th { font-variant-numeric: tabular-nums; }

/* ---- Layout helpers ------------------------------------------------- */
.gov-container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 48px);
}

.gov-skip {
    position: absolute;
    inset-inline-start: 16px;
    top: -60px;
    z-index: 2000;
    background: var(--navy-800);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--r-sm);
    font-weight: 700;
    transition: top .2s var(--ease);
}
.gov-skip:focus { top: 12px; color: #fff; }

/* =====================================================================
   1. Top utility bar
   ===================================================================== */
.gov-utility {
    background: var(--navy-900);
    color: rgba(226,232,240,.82);
    font-size: 13.5px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.gov-utility .gov-container {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 42px; gap: 16px;
}
.gov-utility-meta { display: flex; align-items: center; gap: 18px; }
.gov-utility-meta span { display: inline-flex; align-items: center; gap: 7px; }
.gov-utility-meta svg { width: 15px; height: 15px; opacity: .7; }
.gov-utility-links { display: flex; align-items: center; gap: 18px; }
.gov-utility a { color: rgba(226,232,240,.82); font-weight: 500; }
.gov-utility a:hover { color: #fff; }

/* Language switch */
.gov-lang {
    display: inline-flex; align-items: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--r-sm);
    overflow: hidden;
}
.gov-lang a {
    padding: 4px 12px; font-size: 13px; font-weight: 700;
    color: rgba(226,232,240,.75); line-height: 1.6;
}
.gov-lang a.is-active { background: var(--gold-500); color: var(--navy-900); }
.gov-lang a:not(.is-active):hover { background: rgba(255,255,255,.08); color: #fff; }

/* =====================================================================
   2. Header (brand + search + nav)
   ===================================================================== */
.gov-header {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    position: sticky; top: 0; z-index: 900;
    box-shadow: var(--shadow-1);
}
.gov-header-top {
    display: flex; align-items: center; gap: 28px;
    padding-block: 18px;
}
.gov-brand { display: flex; align-items: center; gap: 16px; min-width: 0; }
.gov-brand-logo {
    width: 60px; height: 60px; flex-shrink: 0;
    object-fit: contain;
}
.gov-brand-text { min-width: 0; }
.gov-brand-name {
    font-family: 'Cairo', 'Lexend', sans-serif;
    font-size: 21px; font-weight: 800; color: var(--navy-800);
    line-height: 1.2; letter-spacing: -0.01em;
}
.gov-brand-sub {
    font-size: 13px; color: var(--ink-500); font-weight: 600;
    letter-spacing: .02em; margin-top: 2px;
}

/* Search */
.gov-search {
    margin-inline-start: auto;
    display: flex; align-items: center;
    background: var(--bg); border: 1px solid var(--line);
    border-radius: var(--r); padding: 0 6px 0 14px;
    min-width: 280px; transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.gov-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(3,105,161,.12); }
.gov-search svg { width: 18px; height: 18px; color: var(--ink-400); flex-shrink: 0; }
.gov-search input {
    border: none; background: transparent; outline: none;
    padding: 11px 10px; font-size: 14.5px; color: var(--ink-800);
    flex: 1; min-width: 0; font-family: inherit;
}
.gov-search button {
    border: none; background: var(--navy-800); color: #fff;
    padding: 8px 16px; border-radius: var(--r-sm); font-weight: 700;
    font-size: 13.5px; cursor: pointer; font-family: inherit;
    transition: background .18s var(--ease);
}
.gov-search button:hover { background: var(--navy-700); }

/* Primary nav */
.gov-nav {
    border-top: 1px solid var(--line-soft);
    background: var(--surface);
}
.gov-nav-list { display: flex; align-items: stretch; gap: 2px; }
.gov-nav-item { position: relative; }
.gov-nav-link {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 15px 18px;
    font-size: 15px; font-weight: 700; color: var(--ink-800);
    border-bottom: 3px solid transparent;
    transition: color .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}
.gov-nav-link svg { width: 16px; height: 16px; opacity: .55; }
.gov-nav-link:hover,
.gov-nav-item:hover > .gov-nav-link,
.gov-nav-link.is-active {
    color: var(--navy-800);
    border-bottom-color: var(--gold-500);
    background: linear-gradient(180deg, transparent, rgba(11,42,107,.03));
}
.gov-nav-link .gov-caret { width: 13px; height: 13px; opacity: .5; transition: transform .2s var(--ease); }
.gov-nav-item:hover .gov-caret { transform: rotate(180deg); }

/* Mega menu */
.gov-mega {
    position: absolute; inset-inline-start: 0; top: 100%;
    background: var(--surface);
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold-500);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    box-shadow: var(--shadow-3);
    padding: 24px;
    width: max-content; max-width: 720px;
    display: grid; grid-template-columns: repeat(2, minmax(200px, 1fr)); gap: 6px 28px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
    z-index: 950;
}
.gov-nav-item:hover .gov-mega,
.gov-nav-item:focus-within .gov-mega {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.gov-mega-link {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 11px 12px; border-radius: var(--r-sm);
    transition: background .16s var(--ease);
}
.gov-mega-link:hover { background: var(--bg); }
.gov-mega-ico {
    width: 38px; height: 38px; flex-shrink: 0;
    border-radius: var(--r-sm);
    background: var(--gold-100); color: var(--navy-800);
    display: flex; align-items: center; justify-content: center;
}
.gov-mega-ico svg { width: 19px; height: 19px; }
.gov-mega-tt { font-weight: 700; color: var(--ink-900); font-size: 14.5px; }
.gov-mega-ds { font-size: 12.5px; color: var(--ink-500); margin-top: 1px; }

/* =====================================================================
   3. Buttons
   ===================================================================== */
.gov-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 12px 24px; border-radius: var(--r-sm);
    font-weight: 700; font-size: 15px; font-family: inherit;
    cursor: pointer; border: 1px solid transparent;
    transition: transform .12s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.gov-btn svg { width: 18px; height: 18px; }
.gov-btn--primary { background: var(--navy-800); color: #fff; box-shadow: var(--shadow-2); }
.gov-btn--primary:hover { background: var(--navy-700); color: #fff; }
.gov-btn--primary:active { transform: translateY(1px); }
.gov-btn--ghost {
    background: transparent; color: #fff; border-color: rgba(255,255,255,.4);
}
.gov-btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.gov-btn--outline {
    background: var(--surface); color: var(--navy-800); border-color: var(--line);
}
.gov-btn--outline:hover { border-color: var(--navy-600); color: var(--navy-700); }

/* =====================================================================
   4. Section heading
   ===================================================================== */
.gov-section { padding-block: clamp(48px, 6vw, 84px); }
.gov-section--tint { background: var(--surface); }

.gov-section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; margin-bottom: 36px;
}
.gov-eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 13px; font-weight: 800; letter-spacing: .08em;
    text-transform: uppercase; color: var(--gold-600);
    margin-bottom: 12px;
}
.gov-eyebrow::before {
    content: ""; width: 26px; height: 2px; background: var(--gold-500);
}
.gov-section-title { font-size: clamp(26px, 3vw, 34px); color: var(--ink-900); }
.gov-section-sub { color: var(--ink-500); font-size: 16px; margin-top: 8px; max-width: 60ch; }
.gov-section-link { font-weight: 700; white-space: nowrap; display: inline-flex; align-items: center; gap: 7px; }
.gov-section-link svg { width: 17px; height: 17px; }
.gov-section-link:hover svg { transform: translateX(-3px); }
html[dir="ltr"] .gov-section-link:hover svg { transform: translateX(3px); }

/* =====================================================================
   5. Hero
   ===================================================================== */
.gov-hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse at 85% 0%, rgba(176,138,62,.22) 0%, transparent 48%),
        linear-gradient(135deg, #07122c 0%, #0B2A6B 55%, #143A8A 100%);
    color: #fff;
    border-bottom: 4px solid var(--gold-500);
}
.gov-hero::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(ellipse 80% 80% at 70% 20%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 70% 20%, #000 30%, transparent 75%);
}
.gov-hero .gov-container { position: relative; z-index: 2; }
.gov-hero-grid {
    display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
    padding-block: clamp(56px, 7vw, 104px);
}
.gov-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(217,195,138,.32);
    color: var(--gold-300);
    padding: 7px 16px; border-radius: 999px;
    font-size: 13.5px; font-weight: 700; letter-spacing: .01em;
    margin-bottom: 22px;
}
.gov-hero-eyebrow svg { width: 16px; height: 16px; }
.gov-hero h1 {
    color: #fff; font-size: clamp(32px, 4.4vw, 54px); line-height: 1.18;
    margin-bottom: 20px; letter-spacing: -0.02em;
}
.gov-hero h1 .accent {
    background: linear-gradient(90deg, #F3ECD9, #D9C38A 55%, #B08A3E);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.gov-hero-sub {
    font-size: clamp(16px, 1.5vw, 19px); color: rgba(226,232,240,.86);
    line-height: 1.8; max-width: 56ch; margin-bottom: 32px;
}
.gov-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero stats panel */
.gov-hero-panel {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-radius: var(--r-lg);
    padding: 10px;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.gov-stat {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r); padding: 22px 18px;
}
.gov-stat-ico {
    width: 44px; height: 44px; border-radius: var(--r-sm);
    background: rgba(217,195,138,.14); color: var(--gold-300);
    display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.gov-stat-ico svg { width: 22px; height: 22px; }
.gov-stat-label { font-size: 14px; font-weight: 700; color: #fff; }
.gov-stat-meta { font-size: 12.5px; color: rgba(226,232,240,.6); margin-top: 3px; }

/* =====================================================================
   6. Service cards
   ===================================================================== */
.gov-services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.gov-service {
    position: relative;
    display: flex; align-items: center; gap: 15px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 20px;
    transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.gov-service::before {
    content: ""; position: absolute; inset-block: 0; inset-inline-start: 0;
    width: 3px; background: var(--navy-800);
    border-start-start-radius: var(--r); border-end-start-radius: var(--r);
    transform: scaleY(0); transform-origin: top; transition: transform .2s var(--ease);
}
.gov-service:hover {
    border-color: var(--line); box-shadow: var(--shadow-2); transform: translateY(-2px);
    color: var(--ink-800);
}
.gov-service:hover::before { transform: scaleY(1); }
.gov-service-ico {
    width: 50px; height: 50px; flex-shrink: 0; border-radius: var(--r-sm);
    background: var(--bg); color: var(--navy-800);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--line-soft);
    transition: background .18s var(--ease), color .18s var(--ease);
}
.gov-service:hover .gov-service-ico { background: var(--navy-800); color: #fff; }
.gov-service-ico svg { width: 24px; height: 24px; }
.gov-service-tt { font-family: 'Cairo','Lexend',sans-serif; font-weight: 700; font-size: 15.5px; color: var(--ink-900); }
.gov-service-ds { font-size: 13px; color: var(--ink-500); margin-top: 2px; }
.gov-service-arrow { margin-inline-start: auto; color: var(--ink-400); flex-shrink: 0; transition: color .18s var(--ease), transform .18s var(--ease); }
.gov-service-arrow svg { width: 18px; height: 18px; }
.gov-service:hover .gov-service-arrow { color: var(--gold-600); transform: translateX(-3px); }
html[dir="ltr"] .gov-service:hover .gov-service-arrow { transform: translateX(3px); }

/* =====================================================================
   7. News cards
   ===================================================================== */
.gov-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.gov-news {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--r-lg); overflow: hidden;
    display: flex; flex-direction: column;
    transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.gov-news:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); color: var(--ink-800); }
.gov-news-media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-2); }
.gov-news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gov-news:hover .gov-news-media img { transform: scale(1.05); }
.gov-news-tag {
    position: absolute; inset-block-start: 12px; inset-inline-start: 12px;
    background: rgba(11,42,107,.92); color: #fff;
    font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: var(--r-xs);
    backdrop-filter: blur(4px);
}
.gov-news-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.gov-news-title {
    font-size: 18px; line-height: 1.45; color: var(--ink-900); margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.gov-news-excerpt {
    font-size: 14.5px; color: var(--ink-500); line-height: 1.75; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.gov-news-foot {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft);
    font-size: 13px;
}
.gov-news-date { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-500); font-weight: 600; }
.gov-news-date svg { width: 15px; height: 15px; opacity: .7; }
.gov-news-more { color: var(--accent); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.gov-news-more svg { width: 15px; height: 15px; }

/* News list (left rail variant for home) */
.gov-news-row {
    display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-soft);
}
.gov-news-row:last-child { border-bottom: none; }
.gov-news-row-img { width: 96px; height: 72px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; background: var(--bg-2); }
.gov-news-row-tt { font-weight: 700; color: var(--ink-900); font-size: 15px; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gov-news-row-dt { font-size: 12.5px; color: var(--ink-500); margin-top: 6px; }

/* =====================================================================
   8. Event cards
   ===================================================================== */
.gov-events { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gov-event {
    display: flex; gap: 0; background: var(--surface);
    border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
    transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.gov-event:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); color: var(--ink-800); }
.gov-event-date {
    flex-shrink: 0; width: 96px;
    background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
    color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px; position: relative;
}
.gov-event-date::after {
    content: ""; position: absolute; inset-block: 18px; inset-inline-end: 0; width: 3px;
    background: var(--gold-500);
}
.gov-event-day { font-size: 30px; font-weight: 800; line-height: 1; font-family: 'Lexend','Cairo',sans-serif; }
.gov-event-mon { font-size: 13px; font-weight: 700; color: var(--gold-300); text-transform: uppercase; letter-spacing: .04em; }
.gov-event-yr  { font-size: 12px; color: rgba(255,255,255,.6); }
.gov-event-body { padding: 18px 20px; flex: 1; min-width: 0; }
.gov-event-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}
.gov-event-badge--up { background: rgba(3,105,161,.1); color: var(--accent-700); }
.gov-event-badge--on { background: rgba(21,128,61,.1); color: var(--success); }
.gov-event-badge--end{ background: var(--bg-2); color: var(--ink-500); }
.gov-event-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.gov-event-title {
    font-size: 17px; line-height: 1.45; color: var(--ink-900); margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.gov-event-meta { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; color: var(--ink-500); }
.gov-event-meta span { display: inline-flex; align-items: center; gap: 8px; }
.gov-event-meta svg { width: 15px; height: 15px; opacity: .7; flex-shrink: 0; }

/* =====================================================================
   9. Prices
   ===================================================================== */
.gov-price-cats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-bottom: 40px; }
.gov-price-cat {
    display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
    padding: 18px 12px; transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.gov-price-cat:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); border-color: var(--navy-600); color: var(--ink-800); }
.gov-price-cat-ico {
    width: 46px; height: 46px; border-radius: var(--r-sm);
    background: var(--gold-100); color: var(--navy-800);
    display: flex; align-items: center; justify-content: center;
}
.gov-price-cat-ico svg { width: 23px; height: 23px; }
.gov-price-cat-nm { font-size: 13.5px; font-weight: 700; color: var(--ink-900); line-height: 1.4; }

.gov-table-wrap { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-1); }
.gov-table { width: 100%; border-collapse: collapse; }
.gov-table thead th {
    background: var(--navy-900); color: rgba(255,255,255,.92);
    font-size: 13.5px; font-weight: 700; text-align: start;
    padding: 15px 20px; white-space: nowrap; letter-spacing: .01em;
}
.gov-table tbody td { padding: 15px 20px; border-top: 1px solid var(--line-soft); font-size: 14.5px; color: var(--ink-800); }
.gov-table tbody tr { transition: background .14s var(--ease); }
.gov-table tbody tr:hover { background: var(--bg); }
.gov-table .gov-item-nm { font-weight: 700; color: var(--ink-900); }
.gov-table .gov-item-cat { font-size: 12.5px; color: var(--ink-400); }
.gov-price { font-weight: 800; color: var(--navy-800); font-size: 15.5px; }
.gov-trend { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 13.5px; }
.gov-trend svg { width: 16px; height: 16px; }
.gov-trend--up { color: var(--success); }
.gov-trend--down { color: var(--danger); }
.gov-trend--same { color: var(--ink-400); }
.gov-table-note { display: flex; align-items: center; gap: 8px; padding: 14px 20px; font-size: 12.5px; color: var(--ink-500); background: var(--bg); border-top: 1px solid var(--line-soft); }
.gov-table-note svg { width: 15px; height: 15px; }

/* =====================================================================
   10. Page header (interior pages)
   ===================================================================== */
.gov-pagehead {
    background:
        radial-gradient(ellipse at 90% 0%, rgba(176,138,62,.18) 0%, transparent 50%),
        linear-gradient(135deg, #07122c 0%, #0B2A6B 60%, #143A8A 100%);
    color: #fff; border-bottom: 4px solid var(--gold-500);
    padding-block: clamp(40px, 5vw, 72px);
}
.gov-pagehead h1 { color: #fff; font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 12px; }
.gov-pagehead p { color: rgba(226,232,240,.82); font-size: 17px; max-width: 60ch; }
.gov-breadcrumb { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(226,232,240,.65); margin-bottom: 18px; }
.gov-breadcrumb a { color: rgba(226,232,240,.65); font-weight: 600; }
.gov-breadcrumb a:hover { color: #fff; }
.gov-breadcrumb svg { width: 14px; height: 14px; opacity: .6; }

/* Chips / filters */
.gov-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.gov-chip {
    padding: 9px 18px; border-radius: 999px; font-size: 14px; font-weight: 700;
    background: var(--surface); border: 1px solid var(--line); color: var(--ink-600);
    transition: all .16s var(--ease);
}
.gov-chip:hover { border-color: var(--navy-600); color: var(--navy-800); }
.gov-chip.is-active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

/* Empty state */
.gov-empty { text-align: center; padding: 72px 24px; color: var(--ink-500); }
.gov-empty svg { width: 56px; height: 56px; color: var(--ink-400); margin: 0 auto 18px; }
.gov-empty h3 { color: var(--ink-700); margin-bottom: 8px; }

/* =====================================================================
   11. Footer
   ===================================================================== */
.gov-footer { background: var(--navy-900); color: rgba(226,232,240,.72); margin-top: 8px; }
.gov-footer-top {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px;
    padding-block: clamp(48px, 5vw, 72px);
}
.gov-footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.gov-footer-brand img { width: 52px; height: 52px; object-fit: contain; }
.gov-footer-brand .nm { font-family: 'Cairo','Lexend',sans-serif; font-size: 18px; font-weight: 800; color: #fff; line-height: 1.3; }
.gov-footer-brand .sb { font-size: 12.5px; color: rgba(226,232,240,.5); }
.gov-footer-about { font-size: 14.5px; line-height: 1.85; max-width: 42ch; }
.gov-footer h4 { color: #fff; font-size: 15px; margin-bottom: 18px; letter-spacing: .01em; }
.gov-footer-links li { margin-bottom: 11px; }
.gov-footer-links a { color: rgba(226,232,240,.72); font-size: 14.5px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.gov-footer-links a:hover { color: var(--gold-300); }
.gov-footer-links a svg { width: 14px; height: 14px; opacity: .5; }
.gov-footer-contact li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 14px; font-size: 14.5px; }
.gov-footer-contact svg { width: 18px; height: 18px; color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.gov-social { display: flex; gap: 10px; margin-top: 20px; }
.gov-social a {
    width: 42px; height: 42px; border-radius: var(--r-sm);
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center; color: rgba(226,232,240,.8);
    transition: all .16s var(--ease);
}
.gov-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); }
.gov-social svg { width: 19px; height: 19px; }
.gov-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08); padding-block: 22px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    font-size: 13.5px; color: rgba(226,232,240,.55);
}
.gov-footer-bottom .gov-container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; width: 100%; }

/* =====================================================================
   12. Reveal animation (respects reduced motion)
   ===================================================================== */
.gov-reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.gov-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto !important; }
    .gov-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    .gov-news:hover, .gov-event:hover, .gov-service:hover, .gov-price-cat:hover { transform: none; }
}

/* =====================================================================
   12b. Pagination
   ===================================================================== */
.gov-pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.gov-page {
    min-width: 44px; height: 44px; padding: 0 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm);
    font-weight: 700; font-size: 15px; color: var(--ink-700);
    transition: all .16s var(--ease);
}
.gov-page:hover { border-color: var(--navy-600); color: var(--navy-800); }
.gov-page.is-active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.gov-page.is-disabled { opacity: .4; pointer-events: none; }
.gov-page-gap { color: var(--ink-400); padding: 0 4px; }

/* Light breadcrumb bar (for detail pages on white) */
.gov-crumbbar { background: var(--surface); border-bottom: 1px solid var(--line); }
.gov-crumbbar .gov-container { padding-block: 16px; }
.gov-crumbbar .gov-breadcrumb { margin: 0; color: var(--ink-500); }
.gov-crumbbar .gov-breadcrumb a { color: var(--ink-500); }
.gov-crumbbar .gov-breadcrumb a:hover { color: var(--navy-800); }
.gov-crumbbar .gov-breadcrumb svg { color: var(--ink-400); }

/* =====================================================================
   14. Detail pages (article + sidebar)
   ===================================================================== */
.gov-detail { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 40px; align-items: start; }
.gov-detail-main { min-width: 0; }
.gov-detail-hero {
    aspect-ratio: 16/8; width: 100%; border-radius: var(--r-lg); overflow: hidden;
    background: var(--bg-2); margin-bottom: 28px; border: 1px solid var(--line);
}
.gov-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.gov-detail-title { font-size: clamp(26px, 3vw, 36px); line-height: 1.3; margin-bottom: 14px; }
.gov-detail-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--ink-500); font-size: 14px; margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.gov-detail-meta span { display: inline-flex; align-items: center; gap: 8px; }
.gov-detail-meta svg { width: 16px; height: 16px; opacity: .7; }

/* Prose (rich body text) */
.gov-prose { font-size: 17px; line-height: 1.9; color: var(--ink-800); }
.gov-prose > * + * { margin-top: 1.2em; }
.gov-prose p { margin: 0 0 1.1em; }
.gov-prose h2, .gov-prose h3 { margin: 1.6em 0 .6em; color: var(--ink-900); }
.gov-prose img { border-radius: var(--r); margin-block: 1.4em; border: 1px solid var(--line); }
.gov-prose ul, .gov-prose ol { margin: 1em 0; padding-inline-start: 1.4em; }
.gov-prose li { margin-bottom: .5em; }
.gov-prose a { text-decoration: underline; text-underline-offset: 3px; }
.gov-prose blockquote { border-inline-start: 4px solid var(--gold-500); padding-inline-start: 18px; color: var(--ink-600); font-style: italic; }

/* Sidebar info card */
.gov-aside { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 96px; }
.gov-infocard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-1); }
.gov-infocard-head { background: var(--navy-900); color: #fff; padding: 16px 20px; font-family: 'Cairo','Lexend',sans-serif; font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 10px; }
.gov-infocard-head svg { width: 19px; height: 19px; color: var(--gold-300); }
.gov-infocard-body { padding: 8px 20px 18px; }
.gov-inforow { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.gov-inforow:last-child { border-bottom: none; }
.gov-inforow-ico { width: 36px; height: 36px; flex-shrink: 0; border-radius: var(--r-sm); background: var(--gold-100); color: var(--navy-800); display: flex; align-items: center; justify-content: center; }
.gov-inforow-ico svg { width: 18px; height: 18px; }
.gov-inforow-lb { font-size: 12.5px; color: var(--ink-500); font-weight: 600; }
.gov-inforow-vl { font-weight: 700; color: var(--ink-900); font-size: 15px; margin-top: 1px; word-break: break-word; }
.gov-infocard-cta { padding: 16px 20px; border-top: 1px solid var(--line-soft); }
.gov-infocard-cta .gov-btn { width: 100%; }

/* Share buttons */
.gov-share { display: flex; align-items: center; gap: 10px; margin-top: 30px; }
.gov-share-lb { font-weight: 700; color: var(--ink-600); font-size: 14px; }
.gov-share a { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--bg); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink-600); transition: all .16s var(--ease); }
.gov-share a:hover { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.gov-share svg { width: 18px; height: 18px; }

/* =====================================================================
   15. Board of Directors
   ===================================================================== */
.gov-chairman {
    display: flex; align-items: center; gap: 28px;
    background: linear-gradient(135deg, #07122c, #0B2A6B 70%, #143A8A);
    border-radius: var(--r-lg); padding: 32px; color: #fff; margin-bottom: 40px;
    border: 1px solid rgba(217,195,138,.25); position: relative; overflow: hidden;
}
.gov-chairman::after { content: ""; position: absolute; inset-block: 24px; inset-inline-end: 0; width: 4px; background: var(--gold-500); }
.gov-avatar { border-radius: 50%; object-fit: cover; background: rgba(255,255,255,.08); border: 3px solid rgba(217,195,138,.4); flex-shrink: 0; }
.gov-avatar--xl { width: 132px; height: 132px; }
.gov-avatar--lg { width: 96px; height: 96px; }
.gov-avatar--md { width: 84px; height: 84px; }
.gov-avatar-fallback { display: flex; align-items: center; justify-content: center; font-family: 'Lexend','Cairo',sans-serif; font-weight: 800; color: var(--gold-300); background: rgba(255,255,255,.06); }
.gov-chairman-name { font-family: 'Cairo','Lexend',sans-serif; font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.gov-chairman-role { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-300); font-weight: 700; font-size: 15px; }
.gov-chairman-role svg { width: 17px; height: 17px; }
.gov-people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gov-people-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gov-person {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 26px 18px; text-align: center; transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.gov-person:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.gov-person .gov-avatar { margin: 0 auto 16px; }
.gov-person-name { font-family: 'Cairo','Lexend',sans-serif; font-weight: 700; font-size: 16px; color: var(--ink-900); }
.gov-person-role { font-size: 13px; color: var(--ink-500); margin-top: 4px; }
.gov-person-socials { display: flex; justify-content: center; gap: 8px; margin-top: 14px; }
.gov-person-socials a { width: 34px; height: 34px; border-radius: var(--r-sm); background: var(--bg); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink-500); transition: all .16s var(--ease); }
.gov-person-socials a:hover { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.gov-person-socials svg { width: 16px; height: 16px; }
.gov-subhead { font-size: 14px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-600); margin: 44px 0 22px; display: flex; align-items: center; gap: 12px; }
.gov-subhead::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* =====================================================================
   16. Contact
   ===================================================================== */
.gov-quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.gov-quick {
    display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 26px 16px; transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.gov-quick:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); color: var(--ink-800); }
.gov-quick-ico { width: 56px; height: 56px; border-radius: var(--r); background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); color: #fff; display: flex; align-items: center; justify-content: center; }
.gov-quick-ico svg { width: 26px; height: 26px; }
.gov-quick-lb { font-family: 'Cairo','Lexend',sans-serif; font-weight: 700; font-size: 16px; color: var(--ink-900); }
.gov-quick-sb { font-size: 13px; color: var(--ink-500); }
.gov-hours { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px 26px; margin-bottom: 40px; box-shadow: var(--shadow-1); flex-wrap: wrap; }
.gov-hours-l { display: flex; align-items: center; gap: 16px; }
.gov-hours-ico { width: 48px; height: 48px; border-radius: var(--r); background: var(--gold-100); color: var(--navy-800); display: flex; align-items: center; justify-content: center; }
.gov-hours-ico svg { width: 24px; height: 24px; }
.gov-hours-tt { font-family: 'Cairo','Lexend',sans-serif; font-weight: 700; font-size: 16px; color: var(--ink-900); }
.gov-hours-sb { font-size: 13.5px; color: var(--ink-500); }
.gov-hours-r { text-align: end; }
.gov-hours-time { font-weight: 800; color: var(--navy-800); font-size: 16px; }
.gov-badge-open { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--success); }
.gov-badge-open .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.gov-dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gov-dept {
    display: flex; align-items: center; gap: 14px; background: var(--surface);
    border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px;
    transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.gov-dept:hover { box-shadow: var(--shadow-2); border-color: var(--navy-600); color: var(--ink-800); }
.gov-dept-ico { width: 42px; height: 42px; flex-shrink: 0; border-radius: var(--r-sm); background: var(--bg); color: var(--navy-800); border: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: center; }
.gov-dept-ico svg { width: 20px; height: 20px; }
.gov-dept-nm { font-weight: 700; color: var(--ink-900); font-size: 15px; }
.gov-dept-em { font-size: 12.5px; color: var(--accent); direction: ltr; text-align: start; }

/* =====================================================================
   17. Generic card grid (studies, podcast, careers, links, services)
   ===================================================================== */
.gov-cardgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gov-cardgrid--2 { grid-template-columns: repeat(2, 1fr); }
.gov-doc {
    display: flex; flex-direction: column; background: var(--surface);
    border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px;
    transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.gov-doc:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.gov-doc-ico { width: 50px; height: 50px; border-radius: var(--r-sm); background: var(--gold-100); color: var(--navy-800); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.gov-doc-ico svg { width: 24px; height: 24px; }
.gov-doc-title { font-size: 17px; color: var(--ink-900); margin-bottom: 8px; line-height: 1.45; }
.gov-doc-desc { font-size: 14px; color: var(--ink-500); line-height: 1.7; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.gov-doc-meta { display: flex; align-items: center; gap: 14px; font-size: 12.5px; color: var(--ink-500); margin: 14px 0; }
.gov-doc-meta span { display: inline-flex; align-items: center; gap: 6px; }
.gov-doc-meta svg { width: 14px; height: 14px; opacity: .7; }

/* Career card */
.gov-job {
    display: flex; gap: 18px; background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: 22px; transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.gov-job:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.gov-job-logo { width: 60px; height: 60px; flex-shrink: 0; border-radius: var(--r-sm); object-fit: cover; background: var(--bg); border: 1px solid var(--line); }
.gov-job-logo-fb { display: flex; align-items: center; justify-content: center; color: var(--navy-800); }
.gov-job-tt { font-size: 18px; color: var(--ink-900); margin-bottom: 5px; }
.gov-job-co { font-size: 14px; color: var(--ink-600); font-weight: 600; }
.gov-job-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.gov-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; padding: 5px 12px; border-radius: 999px; background: var(--bg); border: 1px solid var(--line); color: var(--ink-600); }
.gov-pill svg { width: 14px; height: 14px; opacity: .7; }
.gov-pill--accent { background: rgba(3,105,161,.08); border-color: transparent; color: var(--accent-700); }

/* Tag list (skills, etc.) */
.gov-taglist { display: flex; flex-wrap: wrap; gap: 9px; }
.gov-tag { font-size: 13.5px; font-weight: 600; padding: 7px 14px; border-radius: var(--r-sm); background: var(--bg); border: 1px solid var(--line); color: var(--ink-700); }

/* Bullet list */
.gov-bullets { display: flex; flex-direction: column; gap: 11px; }
.gov-bullets li { display: flex; align-items: flex-start; gap: 11px; font-size: 15.5px; color: var(--ink-700); line-height: 1.7; }
.gov-bullets li svg { width: 20px; height: 20px; color: var(--success); flex-shrink: 0; margin-top: 3px; }

/* Partners / links grid */
.gov-partners { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gov-partner {
    display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 26px 18px; transition: border-color .18s var(--ease), box-shadow .18s var(--ease), transform .18s var(--ease);
}
.gov-partner:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); color: var(--ink-800); }
.gov-partner-logo { width: 84px; height: 84px; object-fit: contain; border-radius: var(--r); background: var(--bg); padding: 8px; border: 1px solid var(--line-soft); }
.gov-partner-nm { font-weight: 700; color: var(--ink-900); font-size: 14.5px; }
.gov-partner-visit { font-size: 13px; color: var(--accent); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.gov-partner-visit svg { width: 14px; height: 14px; }

/* Podcast row (with audio) */
.gov-podcast { display: flex; gap: 18px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px; margin-bottom: 16px; }
.gov-podcast-cover { width: 72px; height: 72px; border-radius: var(--r); object-fit: cover; background: var(--bg-2); flex-shrink: 0; }
.gov-podcast-body { flex: 1; min-width: 0; }
.gov-podcast-tt { font-size: 17px; color: var(--ink-900); margin-bottom: 4px; }
.gov-podcast-ds { font-size: 13.5px; color: var(--ink-500); }
.gov-podcast audio { width: 100%; margin-top: 12px; }

/* Trade-name action cards (reuse service look) + search */
.gov-searchbox { display: flex; gap: 10px; max-width: 640px; margin-bottom: 32px; }
.gov-searchbox input { flex: 1; min-width: 0; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 13px 16px; font-size: 15px; font-family: inherit; background: var(--surface); color: var(--ink-900); }
.gov-searchbox input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(3,105,161,.12); }

/* Under-construction */
.gov-soon { text-align: center; padding: 90px 24px; }
.gov-soon-ico { width: 84px; height: 84px; border-radius: 50%; background: var(--gold-100); color: var(--navy-800); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.gov-soon-ico svg { width: 40px; height: 40px; }
.gov-soon h1 { font-size: 28px; margin-bottom: 10px; }
.gov-soon p { color: var(--ink-500); font-size: 16px; margin-bottom: 26px; }

/* =====================================================================
   13. Responsive (served to tablets + desktops)
   ===================================================================== */
@media (max-width: 1180px) {
    .gov-services-grid { grid-template-columns: repeat(3, 1fr); }
    .gov-price-cats { grid-template-columns: repeat(4, 1fr); }
    .gov-hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .gov-hero-panel { max-width: 480px; }
    .gov-footer-top { grid-template-columns: 1fr 1fr; }
    .gov-detail { grid-template-columns: 1fr; }
    .gov-aside { position: static; }
    .gov-people-grid { grid-template-columns: repeat(3, 1fr); }
    .gov-quick-grid { grid-template-columns: repeat(2, 1fr); }
    .gov-partners { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 920px) {
    .gov-news-grid { grid-template-columns: repeat(2, 1fr); }
    .gov-events { grid-template-columns: 1fr; }
    .gov-search { min-width: 200px; }
    .gov-cardgrid, .gov-dept-grid { grid-template-columns: repeat(2, 1fr); }
    .gov-people-grid, .gov-people-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .gov-chairman { flex-direction: column; text-align: center; }
    .gov-chairman::after { display: none; }
}
@media (max-width: 700px) {
    .gov-services-grid { grid-template-columns: repeat(2, 1fr); }
    .gov-news-grid, .gov-cardgrid, .gov-cardgrid--2, .gov-dept-grid { grid-template-columns: 1fr; }
    .gov-price-cats { grid-template-columns: repeat(3, 1fr); }
    .gov-quick-grid, .gov-partners { grid-template-columns: repeat(2, 1fr); }
    .gov-people-grid, .gov-people-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .gov-footer-top { grid-template-columns: 1fr; gap: 28px; }
    .gov-nav-list { overflow-x: auto; }
    .gov-utility-meta span.hide-sm { display: none; }
    .gov-job { flex-direction: column; }
}
