/* Clone overrides. The source never renders desktop and mobile navigation together;
   here both are in the DOM (mobile nav injected server-side), so gate them by viewport
   the way the source's JS does. */
@media (max-width: 1023px) {
  [class*="_desktopNavigationHeader_"] { display: none !important; }
}
@media (min-width: 1024px) {
  [class*="_mobileNavigation_"] { display: none !important; }
}
