/*
Theme Name: GAL National Database
Theme URI: https://treasurer07735cdf40-roqsm.wordpress.com
Author: FPI Growth
Description: Guardian Ad Litem National Support Database – full custom theme replicating the HTML site exactly.
Version: 1.0
License: Private
Text Domain: gal-national
*/

/* ── Suppress WordPress theme chrome ─────────────────────
   Our pages embed their own <header> and <footer>, so we
   hide any WP-generated navigation, title blocks, etc.    */
.wp-site-blocks > header,
.wp-site-blocks > footer,
header.wp-block-template-part,
footer.wp-block-template-part,
.entry-header,
.entry-footer,
.wp-block-post-title { display: none !important; }

.wp-site-blocks           { padding: 0 !important; margin: 0 !important; }
.wp-block-post-content    { margin: 0 !important; padding: 0 !important; }
.entry-content            { margin: 0 !important; padding: 0 !important; max-width: 100% !important; }
.wp-block-group,
.wp-block-post            { max-width: 100% !important; padding: 0 !important; margin: 0 !important; }
html                      { margin-top: 0 !important; }
body                      { margin: 0 !important; padding: 0 !important; }
.wp-block-html            { margin: 0 !important; padding: 0 !important; }
#wpadminbar               { display: none !important; }

/* ==========================================================
   GAL National Database — Core Design System
   ========================================================== */
:root {
  --navy:       #1a2e4a;
  --navy-mid:   #243c60;
  --navy-light: #2e4f7e;
  --gold:       #c8972a;
  --gold-light: #e8b84b;
  --teal:       #1d6e72;
  --teal-light: #268c91;
  --red-alert:  #c0392b;
  --bg:         #f5f6f8;
  --bg-card:    #ffffff;
  --border:     #d4d9e2;
  --text:       #1e2d3d;
  --text-mid:   #4a5568;
  --text-light: #718096;
  --radius:     8px;
  --shadow:     0 2px 8px rgba(0,0,0,.10);
  --shadow-lg:  0 6px 24px rgba(0,0,0,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}
a { color: var(--navy-light); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* Header */
.site-header {
  background: var(--navy); color: #fff; position: sticky; top: 0;
  z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,.3); display: block !important;
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: var(--navy);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: .3px; }
.logo-sub   { font-size: 11px; color: rgba(255,255,255,.65); font-weight: 400; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500;
  padding: 6px 14px; border-radius: 6px; transition: background .15s, color .15s;
  text-decoration: none; white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(255,255,255,.12); color: #fff; text-decoration: none;
}
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.85);
  font-size: 14px; font-weight: 500; padding: 6px 14px; border-radius: 6px;
  cursor: pointer; transition: background .15s, color .15s; user-select: none; white-space: nowrap;
}
.nav-dropdown-toggle:hover, .nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle.has-active { background: rgba(255,255,255,.12); color: #fff; }
.nav-dropdown-toggle svg { transition: transform .2s; flex-shrink: 0; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--navy); border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,.4);
  min-width: 200px; padding: 6px; z-index: 2000;
  max-height: calc(100vh - 120px); overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.25) transparent;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; color: rgba(255,255,255,.85); font-size: 13.5px; font-weight: 500;
  padding: 7px 14px; border-radius: 6px; text-decoration: none;
  transition: background .12s, color .12s; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,.12); color: #fff; }
.nav-dropdown-menu a.active { background: rgba(255,255,255,.15); color: #fff; font-weight: 600; }
.nav-dropdown-menu .dropdown-divider { height: 1px; background: rgba(255,255,255,.1); margin: 5px 8px; }
.nav-dropdown-menu .dropdown-label {
  font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: rgba(255,255,255,.4); padding: 6px 14px 3px;
}
.header-search {
  display: flex; align-items: center; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); border-radius: 24px; padding: 4px 12px;
  gap: 8px; transition: background .15s, border-color .15s;
}
.header-search:focus-within { background: rgba(255,255,255,.18); border-color: var(--gold); }
.header-search input { background: none; border: none; outline: none; color: #fff; font-size: 14px; width: 200px; }
.header-search input::placeholder { color: rgba(255,255,255,.5); }
.header-search svg { color: rgba(255,255,255,.5); flex-shrink: 0; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--teal) 100%);
  color: #fff; padding: 80px 24px 72px; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { max-width: 760px; margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-block; background: rgba(200,151,42,.25); border: 1px solid rgba(200,151,42,.5);
  color: var(--gold-light); font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(28px,5vw,48px); font-weight: 800; line-height: 1.15; margin-bottom: 18px; letter-spacing: -.5px; }
.hero h1 span { color: var(--gold-light); }
.hero p { font-size: clamp(15px,2.5vw,18px); color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 36px; }
.hero-search-wrap { max-width: 580px; margin: 0 auto; }
.hero-search { display: flex; background: #fff; border-radius: 50px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.25); }
.hero-search input { flex: 1; border: none; outline: none; padding: 14px 22px; font-size: 16px; color: var(--text); background: transparent; }
.hero-search input::placeholder { color: var(--text-light); }
.hero-search button {
  background: var(--gold); border: none; color: var(--navy); font-weight: 700; font-size: 15px;
  padding: 14px 28px; cursor: pointer; transition: background .15s;
  display: flex; align-items: center; gap: 8px;
}
.hero-search button:hover { background: var(--gold-light); }
.hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 40px; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 28px; font-weight: 800; color: var(--gold-light); display: block; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .8px; }

/* Layout */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.page-wrap { max-width: 1280px; margin: 0 auto; padding: 48px 24px 80px; }
.section-header { margin-bottom: 28px; }
.section-header h2 { font-size: 24px; font-weight: 700; color: var(--navy); }
.section-header p { color: var(--text-mid); margin-top: 6px; font-size: 15px; }
.section-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.section-divider h2 { font-size: 22px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.section-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* Cards */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }
.card-hover { transition: transform .2s, box-shadow .2s, border-color .2s; }
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--navy-light); }

/* State Grid */
.states-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 14px; }
.state-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 20px 16px 18px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); cursor: pointer; transition: all .2s;
  text-decoration: none; color: var(--text); position: relative;
}
.state-card:hover { border-color: var(--navy-light); box-shadow: var(--shadow-lg); transform: translateY(-2px); text-decoration: none; color: var(--text); }
.state-card.has-content { border-color: var(--teal); }
.state-card.has-content::after {
  content: '✓ Resources'; position: absolute; top: -1px; right: -1px;
  background: var(--teal); color: #fff; font-size: 10px; font-weight: 600;
  padding: 2px 8px; border-radius: 0 var(--radius) 0 var(--radius);
}
.state-abbr { font-size: 26px; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.state-name { font-size: 12px; color: var(--text-mid); font-weight: 500; }
.state-resource-count { font-size: 11px; color: var(--teal); font-weight: 600; margin-top: 4px; }

/* Featured States */
.featured-states { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; margin-bottom: 40px; }
.featured-state-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; transition: all .2s;
  text-decoration: none; color: var(--text); display: flex; flex-direction: column;
}
.featured-state-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none; color: var(--text); }
.fsc-header { background: var(--navy); color: #fff; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; }
.fsc-header h3 { font-size: 16px; font-weight: 700; }
.fsc-badge { background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 20px; }
.fsc-body { padding: 16px 20px; flex: 1; }
.fsc-body p { font-size: 14px; color: var(--text-mid); margin-bottom: 12px; }
.fsc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.tag { display: inline-block; background: #eef2f7; color: var(--navy-mid); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.tag.green { background: #e6f4ea; color: #1e6b3e; }
.tag.blue  { background: #e3edf8; color: #1a4d8c; }
.tag.gold  { background: #fef3d8; color: #7a5a0a; }
.fsc-footer { padding: 12px 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.btn-link { font-size: 13px; font-weight: 600; color: var(--navy-light); display: flex; align-items: center; gap: 6px; }
.btn-link:hover { color: var(--gold); text-decoration: none; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all .15s; text-decoration: none; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-light); color: #fff; text-decoration: none; }
.btn-secondary { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); text-decoration: none; color: var(--navy); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-light); color: #fff; text-decoration: none; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 13px 28px; font-size: 16px; }

/* Download Cards */
.download-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 16px; }
.download-card { display: flex; gap: 14px; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); transition: all .2s; }
.download-card:hover { border-color: var(--teal); box-shadow: var(--shadow-lg); }
.dl-icon { width: 44px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 20px; }
.dl-icon.pdf  { background: #fde8e8; color: #c0392b; }
.dl-icon.doc  { background: #dbeafe; color: #1d4ed8; }
.dl-icon.xlsx { background: #dcfce7; color: #15803d; }
.dl-info { flex: 1; }
.dl-info h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.dl-info p { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.dl-meta { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text-light); }

/* Resource Cards */
.resource-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 14px; }
.resource-card { background: var(--bg-card); border: 1px solid var(--border); border-left: 4px solid var(--navy-light); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); }
.resource-card.local   { border-left-color: var(--teal); }
.resource-card.state   { border-left-color: var(--navy-light); }
.resource-card.federal { border-left-color: var(--gold); }
.resource-card.mental  { border-left-color: #7c3aed; }
.resource-card.housing { border-left-color: #0891b2; }
.resource-card.legal   { border-left-color: #be185d; }
.resource-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.resource-card p { font-size: 13px; color: var(--text-mid); margin-bottom: 8px; line-height: 1.5; }
.resource-card .contact-info { font-size: 12px; color: var(--text-light); display: flex; flex-direction: column; gap: 2px; }
.resource-card .contact-info a { color: var(--teal); font-weight: 500; }

/* State Page Layout */
.state-page-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.state-sidebar { position: sticky; top: 80px; }
.sidebar-nav { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.sidebar-nav-header { background: var(--navy); color: #fff; padding: 14px 18px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; }
.sidebar-nav a { display: flex; align-items: center; gap: 10px; padding: 12px 18px; font-size: 13px; color: var(--text); border-bottom: 1px solid var(--border); transition: background .1s, color .1s; text-decoration: none; }
.sidebar-nav a:last-child { border-bottom: none; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: #eef2f7; color: var(--navy); text-decoration: none; }
.sidebar-downloads { margin-top: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.sidebar-downloads-header { background: var(--teal); color: #fff; padding: 12px 18px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; }
.sidebar-downloads a { display: flex; align-items: center; gap: 10px; padding: 12px 16px; font-size: 13px; color: var(--text); border-bottom: 1px solid var(--border); transition: background .1s; text-decoration: none; }
.sidebar-downloads a:last-child { border-bottom: none; }
.sidebar-downloads a:hover { background: #f0fafa; text-decoration: none; }
.sidebar-downloads .dl-icon-sm { width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; background: #fde8e8; color: #c0392b; }

/* Content Sections */
.content-section { margin-bottom: 44px; scroll-margin-top: 80px; }
.content-section h2 { font-size: 22px; font-weight: 700; color: var(--navy); border-left: 4px solid var(--gold); padding-left: 14px; margin-bottom: 18px; }
.content-section h3 { font-size: 17px; font-weight: 700; color: var(--navy-mid); margin: 20px 0 10px; }
.content-section p { color: var(--text-mid); margin-bottom: 12px; font-size: 15px; line-height: 1.7; }
.content-section ul { margin: 10px 0 14px 20px; }
.content-section ul li { color: var(--text-mid); font-size: 15px; margin-bottom: 6px; line-height: 1.6; }

/* Callout Boxes */
.statute-box { background: #eef2f7; border: 1px solid #c5d3e8; border-left: 4px solid var(--navy-light); border-radius: var(--radius); padding: 16px 20px; margin: 14px 0; }
.statute-box h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--navy); margin-bottom: 8px; }
.statute-box ul { margin: 0; padding-left: 18px; }
.statute-box ul li { font-size: 13px; color: var(--text-mid); margin-bottom: 4px; }
.alert-box { background: #fef9e7; border: 1px solid #f0c040; border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 14px 18px; margin: 14px 0; font-size: 14px; color: #7a5a0a; }
.alert-box strong { color: #5a4008; }
.info-box { background: #e8f4fd; border: 1px solid #b8d9f5; border-left: 4px solid var(--teal); border-radius: var(--radius); padding: 14px 18px; margin: 14px 0; font-size: 14px; color: var(--teal); }

/* Timeline */
.process-timeline { position: relative; padding-left: 28px; }
.process-timeline::before { content: ''; position: absolute; left: 10px; top: 8px; bottom: 8px; width: 2px; background: var(--border); }
.timeline-step { position: relative; margin-bottom: 20px; }
.timeline-step::before { content: ''; position: absolute; left: -22px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--navy); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--navy); }
.timeline-step h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.timeline-step p { font-size: 13px; color: var(--text-mid); margin: 0; }

/* Search */
.search-bar-wrap { display: flex; gap: 12px; margin-bottom: 28px; align-items: center; }
.search-input { flex: 1; display: flex; background: var(--bg-card); border: 2px solid var(--border); border-radius: 8px; overflow: hidden; transition: border-color .15s; }
.search-input:focus-within { border-color: var(--navy-light); }
.search-input input { flex: 1; border: none; outline: none; padding: 10px 16px; font-size: 15px; color: var(--text); background: transparent; }
.search-input input::placeholder { color: var(--text-light); }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.filter-btn { padding: 6px 14px; border-radius: 20px; border: 1px solid var(--border); background: var(--bg-card); font-size: 13px; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: all .15s; }
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* State Hero */
.state-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: #fff; padding: 40px 0 36px; }
.state-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.state-hero-breadcrumb { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 14px; }
.state-hero-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.state-hero-breadcrumb a:hover { color: var(--gold-light); }
.state-hero-breadcrumb span { margin: 0 8px; }
.state-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 10px; }
.state-hero h1 span { color: var(--gold-light); }
.state-hero p { font-size: 16px; color: rgba(255,255,255,.75); max-width: 600px; }
.state-hero-meta { display: flex; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.state-hero-meta-item { background: rgba(255,255,255,.1); border-radius: 6px; padding: 8px 14px; font-size: 13px; color: rgba(255,255,255,.85); }
.state-hero-meta-item strong { color: var(--gold-light); display: block; font-size: 16px; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 48px 24px 28px; margin-top: 80px; display: block !important; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: 13px; text-decoration: none; transition: color .15s; }
.footer-col ul li a:hover { color: var(--gold-light); text-decoration: none; }
.footer-bottom { max-width: 1280px; margin: 24px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 12px; }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.6; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }

/* Utilities */
.text-center{text-align:center}
.mt-8{margin-top:8px}.mt-16{margin-top:16px}.mt-24{margin-top:24px}.mt-32{margin-top:32px}
.mb-8{margin-bottom:8px}.mb-16{margin-bottom:16px}.mb-24{margin-bottom:24px}.mb-32{margin-bottom:32px}
.flex{display:flex}.flex-wrap{flex-wrap:wrap}
.gap-8{gap:8px}.gap-12{gap:12px}.gap-16{gap:16px}
.items-center{align-items:center}.justify-between{justify-content:space-between}
.font-bold{font-weight:700}.text-sm{font-size:13px}.text-muted{color:var(--text-light)}.hidden{display:none!important}
.badge{display:inline-block;font-size:11px;font-weight:700;padding:2px 9px;border-radius:20px;text-transform:uppercase;letter-spacing:.5px}
.badge-navy{background:#e3edf8;color:var(--navy)}
.badge-gold{background:#fef3d8;color:#7a5a0a}
.badge-green{background:#e6f4ea;color:#1e6b3e}
.badge-teal{background:#e0f5f5;color:var(--teal)}
.badge-red{background:#fde8e8;color:var(--red-alert)}
.search-highlight{background:#fff3c4;border-radius:2px;padding:0 2px}
.no-results{text-align:center;padding:60px 20px;color:var(--text-light)}

/* Responsive */
@media (max-width: 1024px) {
  .state-page-layout { grid-template-columns: 1fr; }
  .state-sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hero { padding: 48px 20px 40px; }
  .hero-stats { gap: 24px; }
  .hero-search button span { display: none; }
  .states-grid { grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .resource-grid { grid-template-columns: 1fr; }
}
