/* Element: menu (+ secondary_menu) */
.mhb-el--menu .mhb-menu,
.mhb-el--secondary_menu .mhb-menu {
  display: block;
  min-width: 0;
}
.mhb-el--menu .mhb-nav,
.mhb-el--menu .m-nav__list,
.mhb-el--secondary_menu .mhb-nav,
.mhb-el--secondary_menu .m-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--mhb-el-gap, 4px) var(--mhb-menu-gap, 18px);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.mhb-el--menu .mhb-nav--center,
.mhb-el--secondary_menu .mhb-nav--center {
  justify-content: center;
}
.mhb-el--menu a,
.mhb-el--secondary_menu a {
  text-decoration: none;
  color: var(--mhb-el-color, inherit);
  font-size: var(--mhb-el-fs, 14.5px);
  font-weight: var(--mhb-menu-fw, 500);
  padding: var(--mhb-menu-pad, 0);
  border-radius: var(--mhb-el-radius, 0);
}
.mhb-el--menu a:hover,
.mhb-el--secondary_menu a:hover {
  opacity: 0.8;
}
.mhb-el--menu .sub-menu,
.mhb-el--secondary_menu .sub-menu {
  display: none;
}
