/* ============================================ */
/* FOOTER.CSS - SHARED FOOTER */
/* Used on all pages */
/* ============================================ */

.site-footer {
  background: var(--color-bg-light);
  border-top: 2px solid var(--color-border);
  padding: var(--spacing-2xl);
  margin-top: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-2xl);
}

.footer-logo {
  height: 40px;
}

.footer-logo img {
  height: 100%;
  object-fit: contain;
}

.footer-text {
  font-size: 12px;
  color: var(--color-text-light);
}

/* ============================================ */
/* FOOTER (generated by navbar.js) */
/* ============================================ */

.logo-row {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.logo-row img {
  height: 40px;
  object-fit: contain;
}

.logo-row span {
  font-size: 13px;
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
}

.site-footer > span {
  font-size: 11px;
  color: var(--color-text-light);
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-lg);
  }

  .footer-logo {
    height: 32px;
  }
}
