.site-footer {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  flex-wrap: wrap;
  background: #f3f6fa;
  color: #5b6a82;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
}

.site-footer-links {
  display: flex;
  align-items: center;
  gap: 4px 22px;
  flex-wrap: wrap;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #5b6a82;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: 0;
}

.site-footer-copyright {
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .site-footer {
    width: calc(100vw - 28px);
    max-width: 100%;
    min-width: 0;
    padding: 28px 6px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: .875rem;
    text-align: center;
  }

  .site-footer-links {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
  }

  .site-footer a {
    white-space: nowrap;
  }

  .site-footer-links a + a::before {
    margin: 0 5px;
    color: #8b96a8;
    content: "\00b7";
  }

  .site-footer-links.is-three-line {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
  }

  .site-footer-links.is-three-line a:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .site-footer-links.is-three-line a:nth-child(3)::before {
    display: none;
  }

  .site-footer-copyright {
    color: #748198;
  }
}
