/* Dropdown hover-gap fix: eliminates the invisible "dead zone" between
   the "บทความ" trigger link and its dropdown panel. When the panel sits
   below the trigger with a margin gap, moving the mouse from one to the
   other briefly leaves the hoverable area, closing the menu before the
   pointer arrives - this is the classic cause of "disappears before I
   can click it". Fix: no gap (margin-top: 0), padding instead of
   margin for visual spacing (padding stays INSIDE the hoverable box),
   and a comfortably large hit area on both trigger and items. */

.public-nav__dropdown {
  position: relative;
}

.public-nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0 !important;
  padding-top: 10px;
  z-index: 200;
}

.public-nav__dropdown > a {
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: -10px;
}

.public-nav__dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
}
