/* GS-LOTTE-NAV-CLICK-TO-OPEN - 2026-08-26
 * Two wishes from the correction round, both about the same behaviour:
 *   "Ist es moeglich, die Haken verschwinden zu lassen, so dass das
 *    Aufblaettern erst beim Anklicken erscheint?"
 *
 * The click mechanism was already written in homepage-navigation.js, but it
 * was gated to mobile viewports, and the stylesheet opened the panel on hover
 * and on focus-within regardless - so on desktop the script never had a say.
 * The gate is lifted in the script; here the two automatic openers are closed
 * again, leaving .is-open as the single switch, and the chevron is dropped.
 *
 * Keyboard access does not suffer: pressing Enter on a link fires a click, so
 * the same handler opens the panel, Escape closes it, and aria-expanded is
 * maintained by the script. Removing focus-within is in fact the safer state -
 * it no longer opens a panel merely because focus passed through.
 */

.gsl-nav__link[aria-haspopup="true"]::before {
  content: none;
}

.gsl-nav__item:hover > .gsl-nav__dropdown,
.gsl-nav__item:focus-within > .gsl-nav__dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
}

.gsl-nav__item.is-open > .gsl-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
