/* ==========================================================================
   Footer
   ========================================================================== */

.footer-content {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.footer-content a {
  color: var(--color-text-footer);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-content a:hover {
  color: var(--color-accent);
}

.footer-content nav {
  display: flex;
  gap: 22px;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  color: var(--color-text-footer);
  padding: 36px 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 800px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content nav {
    justify-content: center;
  }
}
