/**
 * Shared footer (includes/site_footer.inc.php)
 * — fixed bar on homepage; static block on content pages when .site-footer--content is set.
 */

.site-footer.site-footer--shared {
  background: rgba(0, 0, 0, 0.7);
  border-top: 1px solid rgba(0, 255, 136, 0.3);
  padding: 10px 12px 12px;
  text-align: center;
  font-size: 0.75em;
  backdrop-filter: blur(10px);
}

.site-footer.site-footer--shared.site-footer--fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.site-footer.site-footer--shared.site-footer--content {
  position: relative;
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
}

.site-footer--shared .site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 4px;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.site-footer--shared .site-footer__nav a {
  color: #00ff88;
  text-decoration: none;
  margin: 0 2px;
}

.site-footer--shared .site-footer__nav a:hover {
  text-decoration: underline;
}

.site-footer__sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

.site-footer__disclaimer {
  margin: 0 auto;
  max-width: 56em;
  font-size: 0.82em;
  line-height: 1.45;
  color: rgba(200, 210, 200, 0.88);
}
