/* Leistungen-Dropdown im Hauptmenu + klickbare Leistungs-Kacheln.
   Additiv zu forkert-gutachten-f8ed56.css - nutzt dieselben Farb-Variablen
   und denselben Font-Stack, veraendert keine bestehende Datei. */

.leistungen-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.leistungen-dropdown-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 300px;
  background-color: #fff;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
  z-index: 20;
}

.leistungen-dropdown:hover .leistungen-dropdown-list,
.leistungen-dropdown:focus-within .leistungen-dropdown-list {
  display: block;
}

.leistungen-dropdown-list a.tile-link-nav {
  display: block;
  padding: 10px 22px;
  color: var(--forkert-blau);
  font-family: Nunitosans Variablefont Ytlc Opsz Wdth Wght, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s, color .2s;
}

.leistungen-dropdown-list a.tile-link-nav:hover {
  background-color: #f5f7f9;
  color: var(--forkert-orange);
}

.tile-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.tile-link:hover .h3 {
  color: var(--forkert-orange);
}

@media screen and (max-width: 991px) {
  .leistungen-dropdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .leistungen-dropdown-list {
    display: block;
    position: static;
    box-shadow: none;
    background-color: transparent;
    padding: 0 0 0 14px;
    margin-top: 2px;
  }

  .leistungen-dropdown-list a.tile-link-nav {
    padding: 6px 0;
    color: var(--untitled-ui--gray900\<deleted\|variable-f63dbb51\>, #101828);
    font-size: 15px;
    font-weight: 400;
  }
}
