.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
  font-size: var(--footer-font-size);
  z-index: 100;
  padding: var(--footer-padding);
  box-shadow: var(--footer-shadow);
  text-decoration: none;
  text-align: center;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Bereiche */
.footer__left,
.footer__center,
.footer__right {
  flex: 1;
  text-align: center;
  color: var(--footer-text-color);
}

/* Linksbündig und rechtsbündig explizit setzen */
.footer__left {
  text-align: center;
  color: var(--footer-text-color);
}

.footer__right {
  text-align: center;
  color: var(--footer-text-color);
}

/* Links im Footer */
.footer__right a {
  color: var(--footer-text-color) !important;
  text-decoration: none;
}

.footer__right a:hover {
  color: var(--footer-text-color) !important;
  text-decoration: none;
}

.footer__text {
  margin: 4px 0;
  line-height: 1.4;
  color: var(--footer-text-color, #fff);
  font-size: 0.9em;
  text-align: inherit; /* übernimmt links, center oder rechts je nach Elternbereich */
}

/* Media Query für kleine Geräte */
/* @media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    gap: 6px;
  }

  .footer__left,
  .footer__center,
  .footer__right {
    text-align: center;
    color: var(--footer-text-color);
  }
} */
@media (max-width: 768px) {
  .footer {
    display: none;
  }
}