.section-untermenue {
    width: 100%;
    height: auto;
    padding: 50px 10px 10px 10px;
}




.untermenu[aria-label="Projekte — Untermenü"] {
  margin: 1em 0;
  /* optional: Hintergrund, wenn du einen Bereich visualisieren willst */
  padding: 0.5em;
  border-radius: 4px;
}

.untermenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.untermenu ul li {
  margin: 0.5em 0;
}

.untermenu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  padding: 0.25em 0.5em;
  display: inline-block;
  border-radius: 3px;
}

/* Hover & Fokuszustand – wichtig für Barrierefreiheit */
.untermenu ul li a:hover,
.untermenu ul li a:focus {
  background-color: #e0e0e0;
  color: #000;
  outline: none; /* wir machen eigenes Outline */
  text-decoration: underline;
}

/* Aktives / aktuell gewähltes Element kennzeichnen */
.untermenu ul li a[aria-current="page"] {
  background-color: #c0c0c0;
  color: #000;
  font-weight: bold;
  /* evtl. zusätzlich eine Linie oder Rahmen */
  border-bottom: 2px solid #666;
}

/* Für Tastaturnutzer: sichtbarer Fokusrahmen */
.untermenu ul li a:focus-visible {
  outline: 2px dashed #0055aa;
  outline-offset: 3px;
}
