/* ==============================================
   FOOTER
   ============================================== */
footer {
  background-color: #020617;
  color: #e5e7eb;
  padding: 10px 16px;
  font-size: 0.75rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  position: relative;
}

footer a {
  color: #e5e7eb;
  text-decoration: underline;
}

.footer-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  position: absolute;
  left: 16px;
}

.footer-links {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.footer-backend {
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 0.15px;
  opacity: 0.55;
}

.footer-backend:hover {
  opacity: 0.95;
  text-decoration: underline;
}

@media (max-width: 900px) {
  footer {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-left {
    position: static;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}