.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-block: 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  gap: 1rem;
  text-align: center;
}

.footer-grid p {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.footer-grid strong {
  color: var(--text-main);
}

.social-links {
  display: inline-flex;
  justify-content: center;
  gap: 0.6rem;
}

.social-links a {
  width: 2.2rem;
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
}

.social-links a:hover {
  border-color: rgba(101, 255, 91, 0.55);
}

.footer-grid small {
  color: #9ca8b4;
}

@media (min-width: 50rem) {
  .footer-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    text-align: left;
  }

  .footer-grid p:last-child {
    justify-content: flex-end;
  }
}
