.site-footer {
  width: min(calc(100% - 32px), 1000px);
  min-width: 0;
  margin: 30px auto 0;
  padding: 20px 0 36px;
  color: #1F1254;
  text-align: center;
}
.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
}
.site-footer-links a {
  color: #1F1254;
  font-weight: 800;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: #1DB894;
  transform: translateY(-1px);
}
.site-footer-copy {
  margin: 10px 0 0;
  color: #61716d;
  font-size: .78rem;
  line-height: 1.6;
}
@media (max-width: 520px) {
  .site-footer {
    width: min(calc(100% - 24px), 1000px);
    padding-bottom: 28px;
  }
  .site-footer-links {
    gap: 8px 14px;
    font-size: .88rem;
  }
}