/*
 * Corrections layered on top of the React bundle. Kept here rather than patched into the
 * build so they survive the next bundle rebuild.
 */

/* The "אודות" dropdown sits 22px below its trigger with nothing in between, so the pointer
 * leaves the hover container on the way down and the menu closes before it can be reached.
 * A bridge on the panel itself keeps the pointer inside the container across the gap - it
 * spans the panel's full width, so diagonal paths to the outer items are covered too. */
nav div[style*="position: absolute"][style*="margin-top: 22px"]::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;   /* the 22px gap, plus a little tolerance */
  height: 24px;
}
