/**
 * menu-fix.css — fix: sticky tour sub-menu bar bottom-heavy spacing. (2026-06-25)
 *
 * The Divi menu module inside the sticky tour nav row carries a ~16.5px bottom
 * margin which, on top of the row's 12px bottom padding, made the floating menu
 * bar look like it had extra padding below the links (bar 71px instead of ~54px).
 * Zeroing the module's bottom margin balances the bar (even space above/below the
 * links). Scoped to menus inside Divi sticky rows so normal menus are untouched.
 *
 * Delivered as its own file (see footer-fix.css note) so it reaches returning
 * visitors despite the 10yr asset cache + FlyingPress stripping the ?ver query.
 */
.et_pb_row.et_pb_sticky_module .et_pb_menu,
.et_pb_row.et_pb_sticky_module .et_pb_fullwidth_menu {
    margin-bottom: 0 !important;
}
