.home-page {
  margin-top: 0;
  background: #fbf7ef;
  color: #071d41;
  --ga-home-max: 1200px;
  --ga-home-content-max: 1152px;
  --ga-home-gutter: 24px;
  --ga-home-edge: max(var(--ga-home-gutter), calc((100vw - var(--ga-home-max)) / 2));
}

.home-page .container,
.ga-hero-inner,
.ga-home-section .container,
.ga-map-section .container,
.ga-lower-grid-section .container,
.ga-cta-section .container {
  max-width: 1200px;
}

.site-nav {
  background: #062a5b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.site-nav .container {
  max-width: 1200px;
  min-height: var(--nav-height);
}

.site-nav-logo {
  color: #fff;
  gap: 0.65rem;
}

.site-nav-logo:hover {
  color: #fff;
  transform: none;
  text-shadow: none;
}

.site-logo-mark,
.site-logo-mark picture,
.site-logo-mark img {
  width: 44px;
  height: 38px;
}

.site-logo-mark picture {
  display: block;
}

.site-logo-mark img {
  object-fit: contain;
  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.26));
}

.site-nav-logo span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-nav-logo strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav-logo small {
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav-links {
  gap: 1.7rem;
}

.site-nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 650;
  padding-bottom: 0.38rem;
}

.site-nav-links a:hover,
.site-nav-links a[aria-current="page"] {
  color: #fff;
}

.site-nav-links a::after {
  height: 2px;
  background: #f89b45;
}

.site-nav-toggle {
  color: #fff;
}

.ga-hero {
  position: relative;
  min-height: 520px;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: #062a5b;
}

.ga-hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 63% 42%, rgba(16, 75, 136, 0.58) 0%, rgba(7, 44, 95, 0.28) 38%, rgba(3, 24, 58, 0) 66%),
    linear-gradient(90deg, #03183a 0%, #062a5b 46%, #042149 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ga-hero-backdrop::before {
  content: "";
  position: absolute;
  left: var(--ga-home-edge);
  bottom: -48px;
  width: min(49vw, 760px);
  height: 650px;
  background-image: image-set(
    url("/img/georgia-capitol-hero-feathered.webp") type("image/webp"),
    url("/img/georgia-capitol-hero-feathered.png") type("image/png")
  );
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.98;
  filter: saturate(0.96) contrast(1.04);
  pointer-events: none;
  z-index: 0;
}

.ga-hero::before {
  content: "";
  position: absolute;
  right: var(--ga-home-edge);
  bottom: 14px;
  width: min(18vw, 235px);
  height: 128px;
  background-image: image-set(
    url("/img/georgia-peaches-corner.webp") type("image/webp"),
    url("/img/georgia-peaches-corner.png") type("image/png")
  );
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.99;
  filter: none;
  pointer-events: none;
  z-index: 2;
}

.ga-hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -52px;
  height: 120px;
  background: #fbf7ef;
  border-top: 8px solid #f89b45;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: rotate(-1deg);
  transform-origin: center;
  z-index: 1;
}

.ga-hero-state {
  position: absolute;
  right: var(--ga-home-edge);
  top: 88px;
  width: min(280px, 23vw);
  opacity: 0.07;
  pointer-events: none;
  filter: saturate(0.3) brightness(1.45);
  z-index: 0;
}

.ga-hero-state img {
  width: 100%;
  height: auto;
  display: block;
}

.ga-hero-inner {
  position: relative;
  z-index: 3;
  min-height: calc(520px - var(--nav-height));
  display: grid;
  place-items: center;
  padding-top: 2.1rem;
  padding-bottom: 5.2rem;
}

.ga-hero-copy {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ga-hero h1 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 4.9rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 1rem;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.24);
}

.ga-hero-lead {
  color: #ffd164;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 auto 0.65rem;
}

.ga-hero-support {
  color: rgba(255, 255, 255, 0.94);
  width: min(640px, 100%);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 auto 1.75rem;
}

.ga-home-search {
  width: min(640px, 100%);
  min-height: 64px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 108px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

.ga-home-search .home-search-icon {
  left: 1.35rem;
  color: #0f2d55;
}

.ga-home-search input {
  font-size: 1rem;
  padding-left: 3.7rem;
}

.ga-home-search button {
  background: #f5863f;
  color: #fff;
}

.ga-home-search button:hover {
  background: #df6f2d;
}

.ga-county-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.45rem;
}

.ga-county-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 29, 65, 0.18);
  font-size: 0.9rem;
  font-weight: 750;
  backdrop-filter: blur(2px);
}

.ga-county-pills a:hover {
  border-color: #f89b45;
  color: #fff;
  transform: translateY(-1px);
}

.ga-county-pills svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #f89b45;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ga-home-section,
.ga-map-section,
.ga-lower-grid-section,
.ga-cta-section {
  position: relative;
  background: #fbf7ef;
}

.ga-featured-section {
  padding: 2.5rem 0 1.3rem;
}



.ga-section-header,
.ga-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.ga-section-header h2,
.ga-panel-title h2,
.ga-region-list h2 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #071d41;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.ga-section-header a {
  color: #071d41;
  font-size: 0.9rem;
  font-weight: 650;
}

.ga-section-header a:hover {
  color: #d8642c;
}

.peach-dot,
.flame-dot {
  width: 24px;
  height: 24px;
  display: inline-block;
  flex: 0 0 auto;
}

.peach-dot {
  width: 27px;
  height: 24px;
  background-image: image-set(
    url("/img/georgia-peach-logo-mark.webp") type("image/webp"),
    url("/img/georgia-peach-logo-mark.png") type("image/png")
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.peach-dot::before {
  content: none;
}

.flame-dot::before {
  content: "";
  display: block;
  width: 18px;
  height: 24px;
  margin: 0 auto;
  background: linear-gradient(160deg, #f16545, #c82634);
  border-radius: 60% 40% 55% 45%;
  clip-path: polygon(45% 0, 74% 28%, 68% 47%, 88% 62%, 74% 100%, 24% 100%, 8% 70%, 30% 42%);
}

.ga-district-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.ga-district-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1rem 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #e3dbcf;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(34, 25, 16, 0.06);
  overflow: hidden;
  position: relative;
}

.ga-district-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--district-accent, #f5863f);
}

.ga-district-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(34, 25, 16, 0.1);
}

.accent-green { --district-accent: #40b88a; }
.accent-orange { --district-accent: #f5863f; }
.accent-red { --district-accent: #ee6b55; }
.accent-blue { --district-accent: #2c81c8; }
.accent-navy { --district-accent: #0b3c78; }
.accent-purple { --district-accent: #9b6bd3; }

.ga-school-mark {
  width: 68px;
  height: 68px;
  margin-bottom: 0.55rem;
  border: 1px solid color-mix(in srgb, var(--district-accent, #f5863f) 46%, white);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.94) 0 18%, transparent 19%),
    linear-gradient(145deg, color-mix(in srgb, var(--district-accent, #f5863f) 18%, white), #fff8ef);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.62), 0 10px 22px rgba(20, 35, 54, 0.08);
  color: var(--district-accent, #f5863f);
  display: grid;
  place-items: center;
  position: relative;
}

.ga-school-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.28;
  transform: translateX(-50%);
}

.ga-school-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.ga-district-card em {
  min-height: 1.2rem;
  color: #68758a;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 0.48rem;
  text-transform: uppercase;
}

.ga-district-card h3 {
  color: #071d41;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  line-height: 1.22;
  min-height: 2.55rem;
  margin: 0 0 0.75rem;
}

.ga-district-card p,
.ga-district-card span {
  color: #3a4a62;
  font-size: 0.78rem;
  line-height: 1.3;
  margin: 0;
}

.ga-district-card strong {
  color: #071d41;
  font-size: 1.14rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0.2rem 0 0.85rem;
}

.ga-district-card > a {
  margin-top: auto;
  color: #d8642c;
  font-size: 0.85rem;
  font-weight: 750;
}

.ga-map-section {
  padding: 1.25rem 0 1.2rem;
}

.ga-map-panel {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 360px;
  min-height: 430px;
  border: 1px solid #e1d8ca;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 25px rgba(34, 25, 16, 0.05);
  overflow: hidden;
}

.ga-map-copy {
  padding: 2rem 1.5rem 1.5rem 2rem;
}

.ga-map-copy h2 {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #071d41;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.45;
  margin: 0 0 0.85rem;
}

.ga-map-copy h2 svg,
.ga-panel-title svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #0b3c78;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.ga-map-copy p {
  color: #263a5a;
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0 0 1.35rem;
}

.ga-map-copy a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid #d5dce8;
  border-radius: 7px;
  color: #071d41;
  background: #fff;
  font-size: 0.86rem;
  font-weight: 750;
}

.ga-map-copy a:hover {
  border-color: #f5863f;
  color: #c85828;
}

.ga-map-art {
  position: relative;
  min-width: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(255,255,255,0.8), rgba(251,247,239,0.2) 62%),
    linear-gradient(90deg, rgba(255,255,255,0), rgba(247,241,231,0.72));
  overflow: hidden;
}

.ga-map-art img {
  width: min(100%, 520px);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 18px rgba(16, 43, 76, 0.1));
}

.ga-map-tooltip {
  position: absolute;
  left: 55%;
  top: 31%;
  display: block;
  min-width: 165px;
  padding: 0.8rem 0.9rem;
  border: 1px solid #d8dee8;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(17, 35, 61, 0.16);
  color: #071d41;
}

.ga-map-tooltip::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 15px;
  height: 15px;
  border: 3px solid #f5863f;
  border-radius: 50%;
  background: #f5863f;
  box-shadow: 0 0 0 3px rgba(245, 134, 63, 0.24);
  transform: translateY(-50%);
}

.ga-map-tooltip strong,
.ga-map-tooltip small {
  display: block;
}

.ga-map-tooltip strong {
  font-size: 0.85rem;
  line-height: 1.2;
}

.ga-map-tooltip small {
  color: #43526b;
  font-size: 0.7rem;
  line-height: 1.35;
  margin-top: 0.2rem;
}

.ga-region-list {
  padding: 1.6rem 1.7rem;
  border-left: 1px solid #ece4d9;
  background: rgba(255, 255, 255, 0.56);
}

.ga-region-list h2 {
  margin-bottom: 1.15rem;
}

.ga-region-list a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  color: #071d41;
  min-height: 56px;
  padding: 0.56rem 0;
}

.ga-region-list a:hover strong {
  color: #d8642c;
}

.region-badge {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
}

.region-badge svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.region-green { background: #40b88a; }
.region-orange { background: #f5863f; }
.region-red { background: #ee6b55; }
.region-blue { background: #2c81c8; }
.region-purple { background: #9b6bd3; }
.region-navy { background: #0b3c78; }

.ga-region-list strong,
.ga-region-list small {
  display: block;
}

.ga-region-list strong {
  font-size: 0.88rem;
  line-height: 1.2;
}

.ga-region-list small {
  color: #3d4d65;
  font-size: 0.74rem;
  line-height: 1.4;
  margin-top: 0.15rem;
}

.ga-region-list em {
  min-width: 34px;
  min-height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid #d9e0ea;
  border-radius: 999px;
  color: #3f4f66;
  background: #fff;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
}

.ga-lower-grid-section {
  padding: 0 0 1.25rem;
}

.ga-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
  gap: 1rem;
}

.ga-card-panel {
  min-height: 290px;
  padding: 1.45rem 1.55rem;
  border: 1px solid #e1d8ca;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 25px rgba(34, 25, 16, 0.05);
}

.ga-top-search-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.ga-top-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.7rem;
  border: 1px solid #eee5da;
  border-radius: 8px;
  color: #071d41;
  background: #fff;
}

.ga-top-card:hover {
  border-color: #f5863f;
  color: #071d41;
  transform: translateY(-1px);
}

.ga-top-logo {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 0.7rem;
  border-radius: 50%;
  background: #f7f1e8;
  color: #b94f35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 800;
}

.ga-top-card strong {
  min-height: 2.25rem;
  color: #071d41;
  font-size: 0.8rem;
  line-height: 1.25;
}

.ga-top-card small,
.ga-top-card em {
  display: block;
  color: #30435f;
  font-size: 0.78rem;
  line-height: 1.3;
}

.ga-top-card small {
  margin-top: auto;
}

.ga-top-card em {
  font-style: normal;
}

.ga-timeline-panel {
  padding-left: 2rem;
}

.ga-timeline {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
}

.ga-timeline li {
  display: grid;
  grid-template-columns: 42px 56px minmax(0, 1fr);
  align-items: center;
  min-height: 31px;
  color: #071d41;
  font-size: 0.86rem;
}

.ga-timeline span {
  font-weight: 700;
}

.ga-timeline i {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #40b88a;
}

.ga-timeline i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 36px;
  height: 1px;
  background: #d8dce3;
}

.ga-timeline strong {
  font-size: 0.86rem;
  font-weight: 500;
}

.timeline-green i { background: #40b88a; }
.timeline-orange i { background: #f5863f; }
.timeline-red i { background: #ee6b55; }
.timeline-blue i { background: #2c81c8; }
.timeline-purple i { background: #9b6bd3; }
.timeline-gold i { background: #f5b12c; }

.ga-cta-section {
  padding: 0 0 1.7rem;
}

.ga-cta-panel {
  display: grid;
  grid-template-columns: minmax(520px, 1.55fr) repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: center;
  padding: 1.45rem 1.55rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #062a5b, #073f87);
  color: #fff;
}

.ga-cta-main {
  display: grid;
  grid-template-columns: 64px minmax(240px, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding-right: 1.6rem;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.ga-cta-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffe0b8;
  color: #e37435;
}

.ga-cta-icon svg,
.ga-cta-small-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ga-cta-main strong,
.ga-cta-main small,
.ga-cta-feature strong,
.ga-cta-feature small {
  display: block;
}

.ga-cta-main strong {
  font-size: 1.12rem;
  line-height: 1.25;
  max-width: 260px;
}

.ga-cta-main small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  line-height: 1.45;
  margin-top: 0.35rem;
  max-width: 370px;
}

.ga-cta-main a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.15rem;
  border-radius: 5px;
  background: #f5863f;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 750;
  white-space: nowrap;
}

.ga-cta-main a:hover {
  background: #df6f2d;
  color: #fff;
}

.ga-cta-feature {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 0.75rem;
  align-items: center;
}

.ga-cta-small-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(248, 155, 69, 0.55);
  border-radius: 50%;
  color: #f89b45;
}

.ga-cta-small-icon svg {
  width: 23px;
  height: 23px;
}

.ga-cta-feature strong {
  font-size: 0.9rem;
  line-height: 1.2;
}

.ga-cta-feature small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  line-height: 1.4;
  margin-top: 0.25rem;
}

@media (max-width: 1120px) {
  .site-nav-links {
    gap: 1rem;
  }

  .ga-map-panel {
    grid-template-columns: 190px minmax(0, 1fr) 310px;
  }

  .ga-district-grid,
  .ga-top-search-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ga-cta-panel {
    grid-template-columns: 1fr 1fr;
  }

  .ga-cta-main {
    grid-column: 1 / -1;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0 0 1.15rem;
  }
}

@media (max-width: 900px) {
  .home-page {
    margin-top: 0;
  }

  .site-nav .nav-links {
    background: #062a5b;
  }

  .ga-hero {
    min-height: auto;
  }

  .ga-hero-state {
    display: none;
  }

  .ga-hero-inner {
    min-height: 540px;
    padding-top: 1.8rem;
    padding-bottom: 6.6rem;
  }

  .ga-hero-backdrop::before {
    display: none;
  }

  .ga-hero::before {
    right: -118px;
    bottom: -16px;
    width: 345px;
    height: 190px;
    opacity: 0.58;
  }

  .ga-hero::after {
    bottom: -105px;
    height: 110px;
    border-top-width: 6px;
  }

  .ga-map-panel,
  .ga-lower-grid {
    grid-template-columns: 1fr;
  }

  .ga-map-copy {
    padding-bottom: 0.5rem;
  }

  .ga-region-list {
    border-left: 0;
    border-top: 1px solid #ece4d9;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-nav-logo strong {
    font-size: 0.96rem;
  }

  .site-nav-logo small {
    display: none;
  }

  .site-logo-mark,
  .site-logo-mark picture,
  .site-logo-mark img {
    width: 34px;
    height: 30px;
  }

  .ga-hero h1 {
    max-width: 100%;
    font-size: 2.15rem;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .ga-hero-copy {
    width: min(100%, calc(100vw - 32px));
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }

  .ga-hero-lead {
    width: min(330px, 100%);
    font-size: 1rem;
  }

  .ga-hero-support {
    width: min(330px, 100%);
    font-size: 0.86rem;
    overflow-wrap: break-word;
  }

  .ga-home-search {
    width: min(100%, calc(100vw - 48px), 316px);
    grid-template-columns: 1fr;
    gap: 0.7rem;
    background: transparent;
    box-shadow: none;
  }

  .ga-home-search input {
    min-height: 58px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    padding-right: 1rem;
  }

  .ga-home-search .home-search-icon {
    top: 29px;
  }

  .ga-home-search button {
    min-height: 46px;
    margin: 0;
    border-radius: 8px;
  }

  .ga-county-pills {
    gap: 0.65rem;
    width: min(100%, calc(100vw - 48px), 316px);
    margin-left: auto;
    margin-right: auto;
  }

  .ga-county-pills a {
    width: 100%;
    max-width: 100%;
    background: rgba(6, 42, 91, 0.62);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  }

  .ga-district-grid,
  .ga-top-search-grid,
  .ga-cta-panel {
    grid-template-columns: 1fr;
  }

  .ga-section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .ga-map-panel,
  .ga-card-panel,
  .ga-cta-panel {
    border-radius: 0;
  }

  .ga-map-art {
    min-height: 420px;
    padding: 0.5rem 1rem 1.2rem;
  }

  .ga-map-art img {
    width: min(100%, 360px);
  }

  .ga-map-tooltip {
    left: 50%;
    right: auto;
    top: 25%;
    min-width: 0;
    width: min(190px, calc(100vw - 92px));
    transform: translateX(-12%);
  }

  .ga-map-tooltip::before {
    left: -13px;
  }

  .ga-cta-main {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .ga-cta-main a {
    grid-column: 1 / -1;
    width: 100%;
  }

  .ga-cta-icon {
    width: 54px;
    height: 54px;
  }
}
