/* Shared by both homepages, all legal pages and the not-found page. */
.site-footer {
  width: 100%;
  padding: 24px 20px;
  background: #22313a;
  color: #b4c3cc;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}
.site-footer .footer-content {
  max-width: 1176px;
  margin: 0 auto;
}
.site-footer .footer-location {
  max-width: none;
  margin: 0 0 4px;
  color: inherit;
  font-size: inherit;
}
.site-footer .footer-bottom,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 18px;
  row-gap: 2px;
}
.site-footer a {
  display: inline-block;
  padding: 6px 0;
  color: inherit;
  text-decoration: none;
  text-underline-offset: 4px;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.site-footer a:focus-visible {
  outline: 2px solid #a4d1f1;
  outline-offset: 4px;
}
@media (max-width: 640px) {
  .site-footer {
    padding: 22px 16px;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    row-gap: 4px;
  }
  .site-footer nav {
    column-gap: 16px;
  }
}
