/* Shared homepage footer. Scoped to override older page-specific footer styles. */
body > footer.site-footer {
  box-sizing: border-box;
  width: min(1440px, 100% - 112px);
  margin: 0 auto;
  padding: 35px 0 45px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 38px;
  background: transparent;
  color: var(--ink);
  font: 400 16px/normal "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site-footer > .brand {
  display: inline-flex;
  flex: 0 0 auto;
  margin: 0;
}

.site-footer .brand img {
  display: block;
  width: 138px;
  height: 35px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

body > footer.site-footer nav {
  display: flex;
  gap: 25px;
  margin: 0 0 0 auto;
  font-size: 11px;
}

body > footer.site-footer a {
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

body > footer.site-footer nav a {
  margin: 0;
  font: inherit;
  letter-spacing: normal;
  text-transform: none;
  transition: none;
}

body > footer.site-footer nav a:hover {
  color: var(--coral);
}

body > footer.site-footer a:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 6px;
}

body > footer.site-footer span.copyright {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--muted);
  font: 400 8px/normal "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: normal;
  text-align: start;
  text-transform: none;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  body > footer.site-footer {
    width: calc(100% - 64px);
    gap: 25px;
  }

  body > footer.site-footer nav {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  body > footer.site-footer {
    width: calc(100% - 40px);
    flex-wrap: wrap;
    padding-block: 30px;
    gap: 27px;
  }

  .site-footer > .brand {
    width: 100%;
  }

  .site-footer .brand img {
    width: 115px;
    height: auto;
  }

  body > footer.site-footer nav {
    flex-wrap: wrap;
    gap: 20px;
    margin-left: 0;
    font-size: 10px;
  }

  body > footer.site-footer .copyright {
    order: 2;
  }
}
