/**
 * @file
 * Header Mobile Buttons.
 */

/*
 * Media query breakpoints.
 * Processed by postcss/postcss-custom-media.
 */

/* Navigation related breakpoints */

/* Grid related breakpoints */

/* Grid shifts from 6 to 14 columns. */

/* Width of the entire grid maxes out. */

.mobile-buttons {
  /*
   * No margin here — .header-nav__secondary carries the margin-inline-start:
   * auto that groups the row's right-hand cluster (search, avatar, this
   * button) together. Two auto margins on the same line would split the
   * free space between them instead of pushing the whole group as one unit.
   */
}

@media (min-width: 1200px) {
  body:not(.is-always-mobile-nav) .mobile-buttons {
    display: none;
  }
}
