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

.site-footer {
  padding: 16px 0 20px;
  font-size: 11px;
  color: #6b7280;              /* matches text-muted */
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
	margin-top: auto;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
}

.footer-links a:hover {
  color: #111827;
  text-decoration: underline;
}

/* small screens: center stack */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
