/* --- Subnavigation Styling --- */
.subnav,
.mod_navigation.level_2 {
  background: none !important;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Menüelemente */
.subnav li,
.mod_navigation.level_2 li {
  background: none !important;
  border: none !important;
  margin: 0;
  padding: 0.5em 0;
  font-weight: 700;
  color: #1f1f1f;
  display: flex;
  align-items: center;
  position: relative;
}

/* Dicke obere Linie nur über dem ersten Menüpunkt */
.subnav li:first-child,
.mod_navigation.level_2 li:first-child {
  border-top: 2px solid #bfbfbf; /* kräftige Linie oben */
  padding-top: 0.8em; /* etwas Luft oberhalb */
}

/* Dünne Trennlinien zwischen den restlichen Punkten */
.subnav li:not(:last-child)::after,
.mod_navigation.level_2 li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  opacity: 0.6;
}

/* Roter Haken vor jedem Text */
.subnav li::before,
.mod_navigation.level_2 li::before {
  content: "✔";
  color: #e20e17;
  font-weight: 900;
  font-size: 1.1em;
  margin-right: 0.4em;
}

/* Links */
.subnav a,
.mod_navigation.level_2 a {
  color: #1f1f1f;
  text-decoration: none;
  background: none !important;
  display: inline-block;
  transition: color 0.2s ease;
}

/* Hover-Effekt */
.subnav a:hover,
.mod_navigation.level_2 a:hover {
  color: #e20e17;
}

/* Aktiver Menüpunkt */
.subnav li.active a,
.mod_navigation.level_2 li.active a {
  color: #e20e17;
  font-weight: 700;
}
