/* footer.html */

.site-footer {
  padding:
    clamp(32px, 5vw, 64px)
    clamp(20px, 6vw, 80px);

  background: #15171a;
  color: whitesmoke;
  text-align: center;
}

.footer-inner {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: clamp(16px, 2vw, 24px);
}

.footer-logo {
  color: whitesmoke;

  font-family: "Play", sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;

  text-decoration: none;
}

.footer-social,
.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: clamp(12px, 2vw, 24px);
}

.footer-social a,
.footer-legal a {
  color: whitesmoke;

  font-family: "Inter", sans-serif;
  font-size: clamp(13px, 1.5vw, 15px);

  text-decoration: none;
}

.footer-social a:hover,
.footer-legal a:hover {
  opacity: 0.6;
}

.footer-copy {
  margin: 0;

  color: #9ca3af;

  font-family: "Inter", sans-serif;
  font-size: clamp(12px, 1.5vw, 14px);
}