.site-footer {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-top: 4rem;
  padding: 0.75rem 0;
  background: #020d13;
  color: #d7dde2;
}

.site-footer-inner {
  max-width: var(--site-content-width, 1280px);
  margin: 0 auto;
  padding-inline: var(--site-content-padding, 0);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.site-footer-logo {
  display: block;
  height: 1.5rem;
  width: auto;
  max-width: none;
  margin: 0;
}

.site-footer-copy {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.3;
}

.site-footer-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-footer-nav a {
  color: inherit;
  text-decoration: none;
}

.site-footer-nav a:hover {
  text-decoration: underline;
}

@media (max-width: 1320px) {
  .site-footer-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 900px) {
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-nav {
    margin-top: 0.5rem;
  }
}