/* ── shared footer ── */
.shared-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 24px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  box-sizing: border-box;
  color: #ccc;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: normal;
  text-transform: none;
}
.shared-footer .shared-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shared-footer .shared-footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #ccc;
  margin: 0;
  padding: 0;
}
.shared-footer .shared-footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.shared-footer .shared-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.shared-footer .shared-footer-links a:hover {
  color: #fff;
}
.shared-footer .shared-footer-links a:not(:has(i)) {
  font-size: 0.75rem;
  line-height: 1.5;
}
