/* Footer */
.superfooter {
  background-color: var(--bg-footer);
  padding: 2rem 0;
  border-top: 1px solid var(--bg-card);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.superfooter p {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-subtle);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-links svg {
  display: block;
}

.footer-top {
  color: var(--text-subtle);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-top:hover {
  color: var(--color-accent);
}

.footer-legal {
  color: var(--text-subtle);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal:hover {
  color: var(--color-accent);
}

@media screen and (max-width: 720px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .superfooter {
    padding-bottom: calc(2rem + 5rem + env(safe-area-inset-bottom, 0.5rem));
  }
}
