/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__logo {
  height: 28px;
  width: auto;
  opacity: 0.7;
}

.footer__links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
}

.footer__links a {
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--accent-hot);
}

.footer__copy {
  font-size: 12px;
  color: var(--muted);
}

.footer-built-by {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding: 16px 0 0;
  margin-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-built-by a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-built-by a:hover {
  color: var(--accent-hot);
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
