/* Custom WS-Static-Footer */
.ws-static-footer {
  background: #404040 !important;
  color: #ffffff !important;
  padding: 24px 0 !important;
  width: 100%;
  font-family: inherit;
  margin: 0 !important;
}
.ws-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.ws-footer-copy {
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.ws-footer-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.ws-footer-nav a {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease;
}
.ws-footer-nav a:hover {
  color: #B38F6D !important;
}

/* Tablet */
@media (max-width: 900px) {
  .ws-footer-inner {
    padding: 0 24px;
  }
}

/* Mobile — untereinander zentriert */
@media (max-width: 600px) {
  .ws-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 0 16px;
  }
  .ws-footer-nav {
    justify-content: center;
    gap: 20px;
  }
}
