/* ============================================================
   FOOTER
============================================================ */

footer {
  background: #0d1220;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-text-faint);
}

footer a {
  color: var(--color-link);
  transition: color 0.2s;
}

footer a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--color-text);
}

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

@media (max-width: 768px) {
  .footer-content {
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
  }
}
