/* ═══════════════════════════════════════════════
   FOOTER — Extracted from includes/footer.html
═══════════════════════════════════════════════ */

.site-footer {
  background-color: #111827;
  color: #d1d5db;
  margin-top: auto;             /* pushes footer to bottom in flex layouts */
}

/* ── Inner content area ───────────────────────────── */
.site-footer__inner {
  max-width: 1421px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

/* ── Tagline ──────────────────────────────────────── */
.site-footer__tagline {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* ── Rich-text body ───────────────────────────────── */
.site-footer__body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #9ca3af;
}

.site-footer__body a {
  color: #a5b4fc;
  text-decoration: none;
}

.site-footer__body a:hover {
  text-decoration: underline;
}

/* ── Links row ────────────────────────────────────── */
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
}

.site-footer__link {
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__link:hover {
  color: #ffffff;
}

/* ── Copyright bar ────────────────────────────────── */
.site-footer__copyright {
  border-top: 1px solid #374151;
  text-align: center;
  padding: 1rem 1.5rem;
}

.site-footer__copyright p {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 600px) {
  .site-footer__inner {
    padding: 2rem 1rem 1.5rem;
  }

  .site-footer__links {
    gap: 0.5rem 1rem;
  }
}
