.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  padding: 3rem clamp(2rem, 4vw, 4rem);
}

.site-footer__inner {
  width: min(100%, 1120px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer__links a {
  transition: color 180ms ease;
}

.site-footer__links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__links {
    justify-content: center;
  }
}
