/* ===========================================
   SHARED SITE FOOTER
   =========================================== */
.site-footer {
  padding: clamp(1rem, 2vw, 1.4rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  font-family: "Space Grotesk", "Noto Sans TC", sans-serif;
  font-size: 0.82rem;
  color: rgba(26, 10, 46, 0.7);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(74, 26, 120, 0.12);
}
.site-footer .footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4em 1.4em;
  line-height: 1.5;
}
.site-footer .footer-info span {
  white-space: nowrap;
}
.site-footer .footer-info span + span::before {
  content: "|";
  margin-right: 1.4em;
  color: rgba(74, 26, 120, 0.25);
}
.site-footer .copyright {
  margin-top: 0.4em;
  font-size: 0.72rem;
  color: rgba(26, 10, 46, 0.45);
  letter-spacing: 0.03em;
}
@media (max-width: 600px) {
  .site-footer { font-size: 0.72rem; padding: 0.7rem 1rem; }
  .site-footer .footer-info { gap: 0.3em 1em; }
  .site-footer .copyright { font-size: 0.65rem; }
}
