.footer_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /*gap: 0.8rem;*/
}

.footer_links a {
  position: relative;
  padding: 0 0.6rem;
  color: var(--text-color);
  text-decoration: none;
  white-space: nowrap;
  font-weight: normal;
  opacity: 50%;
}

.footer_links a:hover {
  text-decoration: underline;
  color: #0074cc;
}

.footer_links a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-weight: normal;
}

.footer_links a:hover {
  text-decoration: none;
  color: #c48f43; /* dunkler beim Hover */
}