/* ------------------------- CSS RESET & NORMALIZE ------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: #F2F2F2;
  color: #1b2030;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #213052;
  text-decoration: none;
  transition: color 0.2s;
}
strong, b { font-weight: 700; }
em, i { font-style: italic; }
button, input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  outline: none;
  border: none;
  background: none;
}
button { cursor: pointer; }
ul, ol { list-style: none; }

/* ---------------------- BRAND & PALETTE (creative_artistic) --------------------- */
:root {
  --primary: #213052;
  --secondary: #8DB600;
  --accent: #F2F2F2;
  --creative-pink: #ED217C;
  --creative-yellow: #FFD600;
  --creative-cyan: #1FC8DB;
  --creative-orange: #ffa94d;
  --text-dark: #1b2030;
  --text-light: #f2f2f2;
  --footer-bg: #211C34;
  --shadow: 0 6px 32px 0 rgba(33,48,82,0.09);
  --radius: 20px;
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Montserrat Bold'), url('https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459WxZ4gnD-w.ttf') format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Montserrat Regular'), url('https://fonts.gstatic.com/s/montserrat/v25/JTUSjIg1_i6t8kCHKm459Wlhyw.ttf') format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Source Sans Pro Regular'), url('https://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lujKx.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Source Sans Pro Bold'), url('https://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNatzujKx.woff2') format('woff2');
}
body, html {
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Source Sans Pro', Arial, sans-serif;
  color: var(--primary);
}
h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--creative-pink);
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--creative-cyan);
  font-weight: 700;
}
h4 {
  font-size: 1.02rem;
  font-weight: 700;
}
p, li, ol, ul {
  font-size: 1.06rem;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* ----------------------- HEADER & NAVIGATION ------------------------ */
header {
  background: linear-gradient(95deg, var(--creative-cyan) 0%, var(--creative-yellow) 70%, var(--accent) 100%);
  padding: 16px 0 8px 0;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 22;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
header img {
  max-height: 40px;
  margin-right: 12px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
}
header nav a {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.06rem;
  transition: color 0.18s;
  border-radius: 12px;
  padding: 8px 12px;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: var(--creative-pink);
  background: rgba(237, 33, 124, 0.10);
}
.cta-primary {
  background: var(--creative-pink);
  color: #fff !important;
  border-radius: 16px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
  padding: 12px 28px;
  border: none;
  margin-left: 12px;
  box-shadow: var(--shadow);
  transition: background 0.2s, transform 0.18s, box-shadow 0.22s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--creative-cyan);
  color: #212633 !important;
  transform: translateY(-3px) scale(1.05) rotate(-2deg);
  box-shadow: 0 8px 28px 0 rgba(33, 200, 219, 0.18);
}
.cta-secondary {
  background: var(--creative-yellow);
  color: var(--primary) !important;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 28px;
  margin-top: 12px;
  box-shadow: var(--shadow);
  transition: background 0.2s, color 0.2s, transform 0.12s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--creative-orange);
  color: #fff !important;
  transform: translateY(-2px) scale(1.03) rotate(1deg);
  box-shadow: 0 7px 22px 0 rgba(255, 169, 77, 0.19);
}

/* ---------------------- BURGER / MOBILE MENU ----------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 3003;
  width: 46px;
  height: 46px;
  background: var(--creative-pink);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(33,48,82,0.17);
  transition: background 0.2s, transform 0.16s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--creative-yellow);
  color: var(--primary);
  outline: 2px solid var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(105deg, var(--creative-cyan) 20%, var(--creative-pink) 90%);
  z-index: 4100;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.67,.39,.29,.87);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px 32px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--creative-yellow);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 14px;
  width: 44px;
  height: 44px;
  margin-bottom: 30px;
  margin-top: 6px;
  transition: background 0.18s;
  box-shadow: 0 2px 12px 0 rgba(33,48,82,0.17);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 12px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.26rem;
  border-radius: 12px;
  padding: 14px 6px 14px 14px;
  transition: background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(255,255,255,0.08);
}

/* Media query: show burger, hide normal nav on mobile */
@media (max-width: 992px) {
  header nav { display: none; }
  header .cta-primary { display: none; }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 993px) {
  .mobile-menu { display: none !important; }
}

/* ------------------ MAIN SPACING & FLEX PATTERNS ------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 24px 18px;
  transition: box-shadow 0.16s, transform 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 36px 0 rgba(237,33,124,0.18);
  transform: translateY(-4px) rotate(-1deg) scale(1.015);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 7px solid var(--creative-pink);
  border-radius: var(--radius);
  box-shadow: 0 3px 14px 0 rgba(33,48,82,0.13);
  margin-bottom: 20px;
  max-width: 670px;
}
.testimonial-card p {
  color: var(--text-dark);
  font-size: 1.04rem;
}
.testimonial-card span {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.02rem;
  margin-left: 0.75em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* -------------- ARTISTIC/CREATIVE EFFECTS SECTION ----------------- */
.section {
  position: relative;
  background: linear-gradient(100deg, #fff 60%, var(--creative-cyan) 230%);
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  right: -38px; bottom: -38px;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--creative-pink) 20%, var(--creative-yellow) 90%);
  border-radius: 60px 25px 100px 24px;
  opacity: 0.14;
  z-index: 1;
}


/* Creative accent blobs, behind content for visual playfulness */
.container {
  position: relative;
}
.container::before {
  display: block;
  content: '';
  position: absolute;
  top: -24px; left: -24px;
  width: 74px; height: 74px;
  background: linear-gradient(119deg, var(--creative-yellow) 40%, var(--creative-pink) 120%);
  border-radius: 35px 45px 64px 24px;
  opacity: 0.13;
  z-index: 0;
}

/* Ensure all content sits above creative overlays */
.content-wrapper, .card, .testimonial-card, .text-section, .districts-grid, .team-bios {
  position: relative;
  z-index: 2;
}

/* --------------- FAQ / ACCORDION ----------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-accordion h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  background: var(--creative-cyan);
  color: var(--primary);
  border-radius: 14px;
  padding: 10px 18px;
  cursor: pointer;
  box-shadow: 0 3px 12px 0 rgba(33,200,219, 0.12);
  transition: background 0.17s;
}
.faq-accordion h3.active, .faq-accordion h3:focus {
  background: var(--creative-yellow);
  color: var(--creative-pink);
}
.faq-answer {
  padding: 10px 18px 12px 28px;
  background: #fff;
  color: var(--primary);
  border-left: 5px solid var(--creative-pink);
  border-radius: 0 14px 14px 0;
  box-shadow: 0 1px 9px 0 rgba(33,48,82,0.08);
  font-size: 1.03rem;
  display: none;
}
.faq-answer.open { display: block; }

/* --------------- DISTRICT & TEAM CARDS --------------- */
.districts-grid, .team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.districts-grid > div, .team-bios > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 18px;
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.16s;
}
.districts-grid > div:hover, .team-bios > div:hover {
  box-shadow: 0 8px 32px 0 rgba(33, 48, 82, 0.18);
  transform: translateY(-9px) rotate(1.5deg);
}
.districts-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

/* --------------- TEXT BLOCKS & MAP ----------------- */
.text-section {
  margin-top: 18px;
  font-size: 1.06rem;
}
.map-placeholder {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 2px 8px 0 rgba(33,48,82, 0.09);
  font-style: italic;
  font-size: 1.04rem;
  margin-top: 8px;
}

/* -------------------- FOOTER ----------------------- */
footer {
  width: 100%;
  background: var(--footer-bg);
  color: #F2F2F2;
  margin-top: 50px;
  padding: 38px 0 18px 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  color: #fff;
  opacity: 0.84;
  font-size: 1.05rem;
  letter-spacing: 0.008em;
  padding: 3px 0;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--creative-pink);
  color: #fff;
  opacity: 1;
}
footer .text-section h3 {
  color: var(--creative-cyan);
  font-size: 1.08rem;
  margin-bottom: 8px;
}
footer .text-section ul li, footer .text-section a {
  color: #fff;
  font-size: 0.98rem;
  opacity: 0.81;
  margin-bottom: 4px;
}
footer .text-section a:hover {
  color: var(--creative-yellow);
  text-decoration: underline;
}
footer .content-wrapper > nav:last-child {
  flex-direction: row;
  gap: 8px;
  margin-top: 18px;
}

/* -------------- BUTTONS & LINKS ------------------- */
button, .cta-secondary, .cta-primary {
  outline: none;
  border: none;
  transition: box-shadow 0.16s, transform 0.16s, background 0.16s, color 0.14s;
}
button:focus-visible, .cta-primary:focus-visible, .cta-secondary:focus-visible {
  outline: 2px dashed var(--creative-cyan);
  outline-offset: 2px;
}
a {
  transition: color 0.17s, text-decoration 0.16s;
}
a:focus {
  outline: 2px dashed var(--creative-yellow);
  outline-offset: 1px;
}

/* -------------- COOKIE CONSENT BANNER ------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 5000;
  background: linear-gradient(93deg, var(--creative-cyan) 60%, var(--creative-yellow) 145%);
  color: var(--primary);
  padding: 28px 18px 22px 18px;
  box-shadow: 0 -4px 32px 0 rgba(33,48,82,0.13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.08rem;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  animation: cc-slide-in 750ms cubic-bezier(.3,.8,.44,1.19);
}
@keyframes cc-slide-in {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-consent-banner button, .cookie-consent-banner .cookie-actions button {
  border-radius: 12px;
  font-size: 1.02rem;
  padding: 10px 22px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--primary);
  color: #fff;
  margin: 0;
  transition: background 0.16s, transform 0.15s;
}
.cookie-consent-banner .accept-btn {
  background: var(--creative-pink);
}
.cookie-consent-banner .accept-btn:hover, .cookie-consent-banner .accept-btn:focus {
  background: var(--creative-cyan);
  color: var(--primary);
}
.cookie-consent-banner .reject-btn {
  background: var(--creative-yellow);
  color: var(--primary);
}
.cookie-consent-banner .reject-btn:hover, .cookie-consent-banner .reject-btn:focus {
  background: var(--creative-orange);
  color: #fff;
}
.cookie-consent-banner .settings-btn {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.cookie-consent-banner .settings-btn:hover, .cookie-consent-banner .settings-btn:focus {
  background: var(--primary);
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30,33,50,0.56);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  animation: cookie-modal-fadein 0.3s;
}
.cookie-modal-overlay.open { display: flex; }
@keyframes cookie-modal-fadein {
  from {opacity:0;} to {opacity:1;}
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 26px;
  box-shadow: 0 10px 38px 0 rgba(33,48,82,0.17);
  padding: 34px 28px 28px 28px;
  max-width: 420px;
  width: 95vw;
  max-height: 98vh;
  overflow-y: auto;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cc-popup 0.45s cubic-bezier(.3,.8,.44,1.19);
}
@keyframes cc-popup {
  from {transform: scale(0.8); opacity:0;}
  to {transform: scale(1); opacity:1;}
}
.cookie-modal h2 {
  color: var(--creative-pink);
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-category {
  background: var(--accent);
  border-radius: 14px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 18px;
  justify-content: space-between;
}
.cookie-modal-category.always {
  background: var(--creative-cyan);
  color: var(--primary);
  font-weight: 700;
}
.cookie-modal-category label {
  font-size: 1.05rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.cookie-category-toggle {
  width: 44px;
  height: 24px;
  background: var(--creative-yellow);
  border-radius: 12px;
  position: relative;
  border: 1px solid var(--primary);
  vertical-align: middle;
  cursor: pointer;
  appearance: none;
  transition: background .2s;
}
.cookie-category-toggle:checked {
  background: var(--creative-pink);
  border-color: var(--creative-pink);
}
.cookie-category-toggle::before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 10px;
  transition: transform 0.2s;
}
.cookie-category-toggle:checked::before {
  transform: translateX(20px);
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  font-size: 1.6rem;
  background: var(--creative-yellow);
  color: var(--primary);
  border-radius: 50%;
  width: 40px; height: 40px;
  border: none;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 16px;
}

/* ------------- TYPOGRAPHY & ELEMENT SPACING ------------------- */
h1, h2, h3, h4 {
  margin-bottom: 8px;
}
h1 { margin-bottom: 16px; }
p, ul, ol { margin-bottom: 14px; }
ul li, ol li { margin-bottom: 8px; }
main {
  margin-top: 24px;
  margin-bottom: 40px;
}
/* Consistent flex spacing for all cards/sections */
.card, .testimonial-card, .districts-grid > div, .team-bios > div {
  margin-bottom: 20px;
}

/* ----- ARTISTIC FONT & OTHER DETAILS (HEADINGS/TITLES) ----- */
h1, h2 {
  text-shadow: 1px 1px 0 rgba(255,214,0,0.11), 2px 2px 0 rgba(33,200,219,0.09);
  letter-spacing: 0.02em;
}
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.2rem;
  background: linear-gradient(95deg, var(--creative-pink) 0%, var(--primary) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* ----------------- RESPONSIVE DESIGN ---------------------- */
@media (max-width: 1200px) {
  .container { padding: 0 16px; }
}

@media (max-width: 860px) {
  .container { max-width: 99vw; padding: 0 7px; }
  .districts-grid > div, .team-bios > div {
    flex: 1 1 97vw;
    min-width: 180px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 28px 7px;
  }
  .footer .container, footer .content-wrapper {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .content-wrapper { gap: 18px; }
  .districts-grid, .team-bios {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    max-width: 99vw;
  }
  .content-grid, .card-container, .feature-item {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
  header .container { flex-direction: row; gap: 10px; }
}

@media (max-width: 550px) {
  .section {
    margin-bottom: 38px;
    padding: 14px 2vw;
    border-radius: 9px;
  }
  h1 {
    font-size: 1.44rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .cta-primary, .cta-secondary {
    font-size: 1rem;
    padding: 9px 14px;
  }
}

/* ----------- HOVER/ACTIVE MICROINTERACTIONS ---------- */
.testimonial-card, .card, .districts-grid > div, .team-bios > div {
  transition: box-shadow 0.12s, transform 0.13s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(237,33,124,0.16);
  border-left: 7px solid var(--creative-yellow);
  transform: translateY(-5px) scale(1.012);
}
.card:hover, .card:focus-within, .districts-grid > div:hover, .team-bios > div:hover {
  box-shadow: 0 8px 32px 0 rgba(33,48,82,0.16);
  transform: scale(1.012) rotate(-1deg);
}

/* Misc - Selection Style */
::selection {
  background: var(--creative-pink);
  color: #fff;
}

/* --------- UTILITIES for FLEX gap/structure --------- */
.flex-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* -------- ACCESSIBILITY: HIDE screen-reader only -------- */
.sr-only {
  position: absolute;
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
  padding: 0;
}
