/* Footer */
footer {
  background: linear-gradient(135deg, var(--ink-deep) 0%, var(--panel-end) 100%);
  color: white;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-wrapper {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.div-logo {
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.footer-links {
  display: flex;
  /* Gap reduziert, da die Links jetzt eigenes Padding als Touch-Fläche tragen –
     der sichtbare Abstand bleibt dadurch etwa gleich */
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  /* Padding hebt die Tap-Fläche auf ~45px Höhe (Mindest-Touch-Target 44px) */
  padding: 14px 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--amber);
}
