/* footer.css – gemeinsames Styling für alle Seiten */

.site-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 16px 28px;
}

.footer-rule {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155,168,181,0.4), transparent);
  margin: 0 auto 16px;
}

.footer-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 10px;
  white-space: nowrap;
}

.footer-nav a {
  text-decoration: none;
  color: rgba(155,168,181,0.6);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 6px;
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-nav a.active {
  color: #c8cfd8;
}

.footer-nav .sep {
  color: rgba(155,168,181,0.25);
  font-size: 0.65rem;
  user-select: none;
  padding: 0 2px;
}

.footer-copy {
  color: rgba(155,168,181,0.3);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
