/* =========================
   Footer component
========================= */

.site-footer{
  border-top: 1px solid var(--border);
  background: var(--bg);
  margin-top: 48px;
}

.footer__shell{
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-nav{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-link{
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.footer-link:hover{
  color: var(--text);
  text-decoration: none;
}

.copy{
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 720px){
  .footer__shell{
    flex-direction: column;
    align-items: flex-start;
  }
}