/* Menu hamburger — vue étroite (≤768px, comme le thème d’origine) */
@media screen and (max-width: 768px) {
  .mceRuntime [data-js-target="headerWithNav"] [data-ref="hamburgerIconRef"] {
    display: grid !important;
    place-items: center;
    cursor: pointer;
    z-index: 110;
    min-width: 44px;
    min-height: 44px;
  }

  .mceRuntime [data-js-target="headerWithNav"] [data-ref="hamburgerIconRef"] svg {
    fill: #fff;
    width: 24px;
    height: 24px;
  }
}

@media screen and (min-width: 769px) {
  .mceRuntime [data-js-target="headerWithNav"] [data-ref="hamburgerIconRef"] {
    display: none !important;
  }
}

/* Panneau latéral au-dessus de l’en-tête fixe */
.mceRuntime .responsiveNavigationDrawerContainer.visible {
  z-index: 300 !important;
  visibility: visible !important;
}

.mceRuntime .responsiveNavigationDrawerContainer.visible > div {
  transform: translate(0) !important;
}

.mceRuntime .responsiveNavigationDrawerContainer .closeButton {
  cursor: pointer;
  z-index: 1;
}

body.nav-drawer-open {
  overflow: hidden;
}
