/* Canonical site footer (templates/partials/footer.html). Self-contained so it
   looks consistent on every page regardless of that page's own stylesheet. */
.site-footer {
  box-sizing: border-box;
  margin-top: 48px;
  padding: 28px 24px;
  border-top: 1px solid rgba(12, 26, 47, 0.12);
  background: #F7F6F4;
  color: rgba(12, 26, 47, 0.70);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.6;
}
.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.site-footer-links a {
  color: #0C1A2F;
  text-decoration: none;
  font-weight: 500;
}
.site-footer-links a:hover { text-decoration: underline; }

@media (prefers-color-scheme: dark) {
  .site-footer {
    background: #0C1A2F;
    color: rgba(247, 246, 244, 0.72);
    border-top-color: rgba(247, 246, 244, 0.15);
  }
  .site-footer-links a { color: #F7F6F4; }
}
