@font-face {
  font-family: "Font Awesome 6 Free";
  src: url("/fa-solid-900.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: block;
}

@font-face {
  font-family: "Open Sans";
  src: url("/open-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("/montserrat-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

.site-footer {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #fff;
}

.casa-get-involved {
  --casa-involved-navy: #002857;
  --casa-involved-blue: #00437a;
  --casa-involved-red: #ed1b2e;
  --casa-involved-cyan: #48c3e3;
  position: fixed;
  z-index: 10000;
  top: 50%;
  right: 0;
  display: grid;
  grid-template-columns: 52px 420px;
  width: 472px;
  min-height: 310px;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
  background: var(--casa-involved-red);
  box-shadow: 0 18px 48px rgba(0, 40, 87, 0.28);
  color: #fff;
  transform: translate(420px, -50%);
  transition: transform 320ms cubic-bezier(.22, 1, .36, 1), box-shadow 220ms ease;
}

.casa-get-involved.is-open {
  transform: translate(0, -50%);
  box-shadow: 0 24px 64px rgba(0, 40, 87, 0.34);
}

.casa-get-involved *,
.casa-get-involved *::before,
.casa-get-involved *::after {
  box-sizing: border-box;
}

.casa-get-involved__tab {
  display: flex;
  width: 52px;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background: var(--casa-involved-red);
  color: #fff;
  cursor: pointer;
  transition: background 160ms ease;
}

.casa-get-involved__tab:hover {
  background: var(--casa-involved-navy);
}

.casa-get-involved__tab span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  text-transform: uppercase;
  letter-spacing: .16em;
  font: 800 13px/1 "Montserrat", "Arial Black", sans-serif;
}

.casa-get-involved__tab::after {
  content: "\2197";
  position: absolute;
  bottom: 20px;
  left: 18px;
  font: 700 16px/1 "Montserrat", Arial, sans-serif;
}

.casa-get-involved__panel {
  position: relative;
  min-height: 310px;
  padding: 36px 48px 36px 38px;
  background: transparent;
}

.casa-get-involved__panel > * {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 180ms ease, transform 260ms cubic-bezier(.22, 1, .36, 1);
}

.casa-get-involved.is-open .casa-get-involved__panel > * {
  opacity: 1;
  transform: translateX(0);
}

.casa-get-involved.is-open .casa-get-involved__panel > :nth-child(2) {
  transition-delay: 50ms;
}

.casa-get-involved.is-open .casa-get-involved__panel > :nth-child(3) {
  transition-delay: 80ms;
}

.casa-get-involved.is-open .casa-get-involved__panel > :nth-child(4) {
  transition-delay: 110ms;
}

.casa-get-involved__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: var(--casa-involved-navy);
  color: #fff;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.casa-get-involved__close:hover {
  background: var(--casa-involved-blue);
  transform: rotate(5deg);
}

.casa-fa-close::before {
  content: "\f00d";
  font: 900 17px/1 "Font Awesome 6 Free";
}

.casa-fa-menu::before,
.menu-toggler .fa-bars::before {
  content: "\f0c9";
  font: 900 20px/1 "Font Awesome 6 Free";
}

.casa-get-involved__eyebrow {
  margin: 0 48px 18px 0;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
  letter-spacing: .17em;
  font: 800 11px/1.3 "Montserrat", "Arial Black", sans-serif;
}

.casa-get-involved h2 {
  max-width: 340px;
  margin: 0 0 28px;
  color: #fff;
  text-transform: none;
  font: 800 28px/1.18 "Montserrat", "Arial Black", sans-serif;
  letter-spacing: -.025em;
}

.casa-get-involved__cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: #002857;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  font: 800 14px/1 "Montserrat", "Arial Black", sans-serif;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.casa-get-involved__cta::after {
  content: "\2192";
  font-size: 18px;
  line-height: 1;
}

.casa-get-involved__cta:hover {
  border-color: var(--casa-involved-navy);
  background: var(--casa-involved-navy);
  color: #fff;
  transform: translateX(2px);
}

.casa-get-involved__tab:focus-visible,
.casa-get-involved__close:focus-visible {
  outline: 3px solid var(--casa-involved-cyan);
  outline-offset: -5px;
}

.casa-get-involved.is-open .casa-get-involved__tab:focus-visible {
  outline: 0;
}

.casa-get-involved__cta:focus-visible {
  outline: 3px solid var(--casa-involved-cyan);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  body.casa-legacy-menu-open .casa-get-involved {
    display: none;
  }

  .casa-get-involved {
    top: auto;
    right: 12px;
    bottom: 12px;
    display: block;
    width: calc(100% - 24px);
    max-width: 430px;
    min-height: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
    transform: none;
    transition: none;
  }

  .casa-get-involved.is-open {
    transform: none;
  }

  .casa-get-involved__tab {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    min-height: 48px;
    gap: 10px;
    padding: 12px 17px;
    border: 0;
    border-radius: 999px;
    background: var(--casa-involved-red);
    box-shadow: 0 8px 24px rgba(0, 40, 87, 0.28);
    pointer-events: auto;
  }

  .casa-get-involved__tab span {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: none;
    letter-spacing: .08em;
    white-space: nowrap;
    font-size: 12px;
  }

  .casa-get-involved__tab::after {
    position: static;
    font-size: 15px;
  }

  .casa-get-involved.is-open .casa-get-involved__tab {
    display: none;
  }

  .casa-get-involved__panel {
    display: none;
    min-height: 0;
    padding: 32px 28px 30px;
    border-radius: 18px;
    background: var(--casa-involved-red);
    box-shadow: 0 16px 42px rgba(18, 36, 64, 0.32);
    pointer-events: auto;
  }

  .casa-get-involved.is-open .casa-get-involved__panel {
    display: block;
  }

  .casa-get-involved__eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .casa-get-involved h2 {
    max-width: 330px;
    margin-bottom: 24px;
    font-size: clamp(22px, 6.6vw, 27px);
    line-height: 1.22;
  }

  .casa-get-involved__cta {
    min-height: 48px;
    font-size: 13px;
  }

  .site-footer__body {
    padding: 22px 20px 24px;
  }

  .site-footer__column + .site-footer__column {
    margin-top: 18px;
    padding-top: 18px;
  }

  .site-footer__nav {
    gap: 3px;
  }

  .site-footer__nav a {
    margin-bottom: 4px;
  }

  .site-footer__legal {
    margin-top: 18px;
    padding-top: 18px;
  }

  .site-footer__community {
    padding-bottom: 68px;
  }
}

/* Final cascade: keep the Texas CASA footer and mobile header treatment authoritative. */
.site-footer {
  background: #002857;
  font-family: "Open Sans", Arial, sans-serif;
}

.site-footer__frame {
  width: 100%;
  max-width: none;
  background: #002857;
}

.site-footer__slogan {
  padding: 28px 24px 24px;
  border-top: 8px solid #48c3e3;
  background: #002857;
  font: 800 25px/1.2 "Montserrat", "Arial Black", sans-serif;
}

.site-footer__body {
  padding: 18px max(calc((100% - 1180px) / 2), 28px) 34px;
  background: #002857;
}

.site-footer__columns {
  gap: 56px;
}

.site-footer__column {
  padding: 0;
}

.site-footer__column + .site-footer__column {
  border-left: 0;
}

.site-footer h2,
.site-footer h3 {
  font-family: "Montserrat", "Arial Black", sans-serif;
}

.site-footer h2 {
  margin-bottom: 18px;
  font-size: 18px;
}

.site-footer h2::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 10px;
  background: #ed1b2e;
}

.site-footer h3 {
  margin: 18px 0 6px;
  font-size: 20px;
}

.site-footer p,
.site-footer address {
  font: normal 15px/1.55 "Open Sans", Arial, sans-serif;
}

.site-footer__nav {
  gap: 6px;
}

.site-footer__nav a {
  margin: 0;
  font: 800 14px/1.35 "Montserrat", "Arial Black", sans-serif;
}

.site-footer__nav .site-footer__donate {
  min-width: 120px;
  margin-top: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #ed1b2e;
  color: #fff;
  text-align: center;
}

.site-footer__legal {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.site-footer__legal p {
  font-size: 12px;
}

.site-footer__community {
  min-height: 92px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: #00437a;
}

.site-footer__community a {
  font: 800 21px/1.2 "Montserrat", "Arial Black", sans-serif;
}

.site-footer__community span {
  font: 600 15px/1.3 "Open Sans", Arial, sans-serif;
}

.site-footer__facebook {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  color: #fff !important;
  font: 700 13px/1.2 "Montserrat", "Arial Black", sans-serif;
  text-decoration: none !important;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.site-footer__facebook-icon {
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  font: 800 21px/.95 Arial, sans-serif;
}

.site-footer__facebook:hover,
.site-footer__facebook:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, .12);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .header.fixed .menu-toggler {
    width: 48px;
    height: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #002857;
  }

  .header.fixed .menu-toggler__label {
    display: none;
  }

  .site-footer__frame {
    width: 100%;
  }

  .site-footer__slogan {
    padding: 24px 20px 20px;
    font-size: 20px;
  }

  .site-footer__body {
    padding: 28px 24px 30px;
  }

  .site-footer__columns {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .site-footer__column + .site-footer__column {
    border-top-color: rgba(255, 255, 255, 0.24);
  }

  .site-footer__community {
    padding-bottom: 72px;
  }
}

/* Texas CASA visual-system alignment. Content and navigation remain local. */
.site-footer {
  background: #002857;
  font-family: "Open Sans", Arial, sans-serif;
}

.site-footer__frame {
  width: 100%;
  max-width: none;
  background: #002857;
}

.site-footer__slogan {
  padding: 28px 24px 24px;
  border-top: 8px solid #48c3e3;
  background: #002857;
  font: 800 25px/1.2 "Montserrat", "Arial Black", sans-serif;
  letter-spacing: 0.01em;
}

.site-footer__body {
  padding: 18px max(calc((100% - 1180px) / 2), 28px) 34px;
  background: #002857;
}

.site-footer__columns {
  gap: 56px;
}

.site-footer__column {
  padding: 0;
}

.site-footer__column + .site-footer__column {
  border-left: 0;
}

.site-footer h2,
.site-footer h3 {
  font-family: "Montserrat", "Arial Black", sans-serif;
}

.site-footer h2 {
  margin-bottom: 18px;
  font-size: 18px;
}

.site-footer h2::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 10px;
  background: #ed1b2e;
}

.site-footer h3 {
  margin: 18px 0 6px;
  font-size: 20px;
}

.site-footer p,
.site-footer address {
  font: normal 15px/1.55 "Open Sans", Arial, sans-serif;
}

.site-footer__nav {
  gap: 6px;
}

.site-footer__nav a {
  margin: 0;
  font: 800 14px/1.35 "Montserrat", "Arial Black", sans-serif;
}

.site-footer__nav .site-footer__donate {
  min-width: 120px;
  margin-top: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #ed1b2e;
  color: #fff;
  text-align: center;
}

.site-footer__legal {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.site-footer__legal p {
  font-size: 12px;
}

.site-footer__community {
  min-height: 92px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: #00437a;
}

.site-footer__community a {
  font: 800 21px/1.2 "Montserrat", "Arial Black", sans-serif;
}

.site-footer__community span {
  font: 600 15px/1.3 "Open Sans", Arial, sans-serif;
}

.casa-get-involved__tab span,
.casa-get-involved__eyebrow,
.casa-get-involved h2,
.casa-get-involved__cta {
  font-family: "Montserrat", "Arial Black", sans-serif;
}

.casa-get-involved__cta {
  border: 2px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: #002857;
}

@media (min-width: 901px) {
  body:not(.site-shell) {
    color: #002857;
    font-family: "Open Sans", Arial, sans-serif;
  }

  .header.fixed .topbar {
    background: #f1f2f4;
  }

  .header.fixed .topbar--wrap {
    width: min(1260px, calc(100% - 48px));
    min-height: 38px;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .header.fixed .site-name {
    color: #002857;
    text-transform: uppercase;
    font: 700 12px/1.2 "Open Sans", Arial, sans-serif;
    letter-spacing: 0.04em;
  }

  .header.fixed .main-header > .wrap {
    width: min(1260px, calc(100% - 48px));
    min-height: 112px;
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 0;
  }

  .header.fixed #logo {
    min-width: 0;
  }

  .header.fixed #logo img {
    width: 225px;
    max-width: 225px;
  }

  .header.fixed .topmenu {
    flex: 1 1 auto;
    max-width: none;
  }

  .header.fixed .topmenu > nav > ul,
  .header.fixed .topmenu .top-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .header.fixed .topmenu > nav > ul > li > a {
    color: #002857;
    text-decoration: none !important;
    text-transform: uppercase;
    font: 800 12px/1.25 "Montserrat", "Arial Black", sans-serif;
  }

  .header.fixed .topmenu .button-menu > a {
    padding: 14px 18px;
    background: #ed1b2e;
    color: #fff;
  }

  .header.fixed .topmenu .sub-menu {
    position: absolute;
    z-index: 1000;
    top: 100%;
    left: 0;
    display: none !important;
    min-width: 250px;
    margin: 0;
    padding: 24px 0 10px;
    border-top: 0;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 40, 87, 0.18);
    list-style: none;
  }

  .header.fixed .topmenu .sub-menu::before {
    content: "";
    position: absolute;
    top: 14px;
    right: 0;
    left: 0;
    height: 4px;
    background: #48c3e3;
  }

  .header.fixed .topmenu li {
    position: relative;
  }

  .header.fixed .topmenu li:hover > .sub-menu,
  .header.fixed .topmenu li:focus-within > .sub-menu {
    display: block !important;
  }

  .header.fixed .topmenu .sub-menu a {
    display: block;
    padding: 10px 16px;
    color: #002857;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    text-decoration: none;
  }

  .header.fixed .topmenu .sub-menu a:hover,
  .header.fixed .topmenu .sub-menu a:focus-visible {
    background: #eef9fc;
  }

  .header.fixed .wrap--toggler,
  .header.fixed .toggle-content {
    display: none !important;
  }

  .header.fixed .topbar--nav,
  .header.fixed .head-search {
    display: flex;
    align-items: center;
  }

  .header.fixed .topbar--items-social {
    margin-right: 14px;
  }

  .header.fixed .topbar--items-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .header.fixed .search-input--header {
    width: 150px;
    min-height: 30px;
    padding: 5px 10px;
    border: 1px solid #c9d2dc;
    border-radius: 0;
    background: #fff;
    color: #002857;
    font: 13px/1.2 "Open Sans", Arial, sans-serif;
  }

  .header.fixed .search-submit {
    width: 72px;
    min-width: 72px;
    min-height: 30px;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #00437a;
  }
}

@media (max-width: 900px) {
  .site-footer__slogan {
    padding: 24px 20px 20px;
    font-size: 20px;
  }

  .site-footer__body {
    padding: 28px 24px 30px;
  }

  .site-footer__columns {
    gap: 0;
  }

  .site-footer__column + .site-footer__column {
    border-top-color: rgba(255, 255, 255, 0.24);
  }

  .site-footer__community {
    padding-bottom: 72px;
  }

  .header.fixed {
    position: relative;
    background: #fff;
  }

  .header.fixed .topbar {
    display: none;
  }

  .header.fixed .main-header > .wrap {
    width: 100%;
    min-height: 80px;
    padding: 9px 78px 9px 15px;
  }

  .header.fixed #logo {
    min-width: 0;
    margin: 0;
  }

  .header.fixed #logo img {
    width: 165px;
    max-width: calc(100vw - 96px);
  }

  .header.fixed .wrap--toggler {
    position: absolute;
    z-index: 20000;
    top: 16px;
    right: 15px;
    width: 48px;
    padding: 0;
  }

  .header.fixed .menu-toggler {
    width: 48px;
    height: 48px;
    min-height: 48px;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #002857;
  }

  .header.fixed .menu-toggler__label {
    display: none;
  }

  .header.fixed.casa-menu-open .wrap--toggler {
    top: 16px;
    right: 15px;
  }

  .header.fixed.casa-menu-open .toggle-content {
    padding: 82px 24px 40px;
    background: #002857;
  }

  .header.fixed #my-menu > ul > li > a {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    font: 800 17px/1.25 "Montserrat", "Arial Black", sans-serif;
  }

  .header.fixed #my-menu .sub-menu a {
    color: #bdeef8;
    font-family: "Open Sans", Arial, sans-serif;
  }
}

@media (max-width: 900px) {
  body.casa-legacy-menu-open {
    overflow: hidden;
  }

  .header.fixed .topmenu {
    display: none !important;
  }

  .header.fixed .wrap--toggler {
    display: flex !important;
    width: min(100% - 32px, 1020px);
    align-items: center;
    justify-content: flex-end;
    padding: 10px 0;
  }

  .header.fixed .menu-toggler {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border: 0;
    border-radius: 3px;
    background: #d93632;
    color: #fff;
    text-transform: uppercase;
    font: 900 15px/1 Arial, sans-serif;
    cursor: pointer;
  }

  .header.fixed .toggle-content {
    display: none !important;
  }

  .header.fixed.casa-menu-open .toggle-content {
    position: fixed;
    z-index: 19990;
    inset: 0;
    display: block !important;
    overflow-y: auto;
    padding: 78px 24px 40px;
    background: #fff;
  }

  .header.fixed.casa-menu-open .wrap--toggler {
    position: fixed;
    z-index: 20000;
    top: 14px;
    right: 16px;
    width: auto;
    padding: 0;
  }

  .header.fixed.casa-menu-open .casa-fa-menu::before {
    content: "\f00d";
  }

  .header.fixed #my-menu {
    display: block;
    width: min(100%, 520px);
    margin: 0 auto;
  }

  .header.fixed #my-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .header.fixed #my-menu > ul > li > a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid #dfe5eb;
    color: #203f72;
    text-decoration: none;
    text-transform: uppercase;
    font: 900 18px/1.2 Arial, sans-serif;
  }

  .header.fixed #my-menu .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    padding: 4px 0 8px 18px;
    box-shadow: none;
  }

  .header.fixed #my-menu .sub-menu a {
    display: block;
    padding: 8px 4px;
    color: #465f88;
    text-decoration: none;
    font: 700 14px/1.3 Arial, sans-serif;
  }
}

@media (prefers-reduced-motion: reduce) {
  .casa-get-involved,
  .casa-get-involved__panel > *,
  .casa-get-involved__close,
  .casa-get-involved__cta {
    transition: none;
  }
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
}

.site-footer__frame {
  width: min(1020px, calc(100% - 32px));
  margin-inline: auto;
  overflow: hidden;
  background: #465f88;
}

.site-footer__slogan {
  padding: 10px 20px 11px;
  background: #d93632;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font: 900 24px/1.2 Arial, sans-serif;
}

.site-footer__slogan sup {
  position: relative;
  top: -0.25em;
  font-size: 55%;
}

.site-footer__body {
  padding: 20px 20px 40px;
  background: #465f88;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
}

.site-footer__column {
  min-width: 0;
  padding: 0 20px;
}

.site-footer__column + .site-footer__column {
  border-left: 1px solid rgba(255, 255, 255, 0.62);
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.2;
}

.site-footer h3 {
  margin: 18px 0 8px;
  font-size: 24px;
  line-height: 1.15;
}

.site-footer p,
.site-footer address {
  margin: 0 0 20px;
  color: #fff;
  font: normal 15px/1.45 Georgia, "Times New Roman", serif;
}

.site-footer a {
  color: #fff;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.site-footer__nav a {
  margin: 0 0 8px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font: 800 16px/1.2 Arial, sans-serif;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.site-footer__nav .site-footer__donate {
  margin-top: 2px;
  padding: 10px 20px;
  border-radius: 3px;
  background: #fff;
  color: #203f72;
  text-decoration: none;
}

.site-footer__legal {
  margin-top: 18px;
  padding: 0 20px;
  text-align: center;
}

.site-footer__legal p {
  margin: 3px 0;
  font-size: 13px;
  line-height: 1.35;
}

.site-footer__community {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 10px 20px;
  background: #68b8d8;
  color: #fff;
  text-align: center;
}

.site-footer__community a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font: 900 23px/1.2 Arial, sans-serif;
}

.site-footer__community span {
  margin-top: 4px;
  font: 700 18px/1.2 Arial, sans-serif;
}

@media (max-width: 760px) {
  .site-footer__frame {
    width: calc(100% - 32px);
  }

  .site-footer__slogan {
    padding: 14px 18px;
    font-size: 20px;
  }

  .site-footer__body {
    padding: 28px 22px 32px;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
  }

  .site-footer__column {
    padding: 0;
  }

  .site-footer__column + .site-footer__column {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.62);
    border-left: 0;
  }

  .site-footer__legal {
    margin-top: 30px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.42);
  }

  .site-footer__community a {
    font-size: 20px;
  }

  .site-footer__community span {
    font-size: 15px;
  }
}

@media (max-width: 900px) {
  .site-footer__frame {
    width: calc(100% - 32px);
  }

  .site-footer__body {
    padding: 22px 20px 24px;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
  }

  .site-footer__column {
    padding: 0;
  }

  .site-footer__column + .site-footer__column {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.62);
    border-left: 0;
  }

  .site-footer__nav {
    gap: 3px;
  }

  .site-footer__nav a {
    margin-bottom: 4px;
  }

  .site-footer__legal {
    margin-top: 18px;
    padding: 18px 0 0;
  }

  .site-footer__community {
    padding-bottom: 68px;
  }
}
