.footer {
  background: var(--color-surface);
  color: var(--color-muted);
  text-align: center;
  font-size: var(--text-sm);
  border-top: 1px solid var(--color-border);

  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--footer-height);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-4);
}

.footer a {
  color: var(--color-text);
  font-weight: 500;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer span {
  display: inline-flex;
  gap: var(--space-6);
  align-items: center;
}

.footer .theme-toggle {
  flex-shrink: 0;
}

.footer .theme-toggle__label {
  gap: .5rem;
}