.site-footer{
  flex:0 0 auto;

  width:100%;
  min-height:42px;

  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:12px;

  padding:10px 16px;

  border-top:1px solid #e5e7eb;
  color:var(--home-muted,#475569);
  background:rgba(255,255,255,.94);

  font-size:.95rem;
}

.site-footer .footer-links,
.site-footer .footer-social{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.site-footer .footer-links{
  justify-content:flex-start;
}

.site-footer .footer-social{
  justify-content:flex-end;
}

.site-footer a{
  color:inherit;
  text-decoration:none;
  font-weight:550;
}

.site-footer a:hover{
  color:var(--home-text,#0f172a);
}

.site-footer__copy{
  text-align:center;
  white-space:nowrap;
}

@media (max-width:700px){
  .site-footer{
    grid-template-columns:1fr;
    justify-items:flex-start;
  }

  .site-footer__copy{
    text-align:left;
    white-space:normal;
  }

  .site-footer .footer-social{
    justify-content:flex-start;
  }
}