/**
 * Offset fixed site headers below the WP admin bar when logged in.
 * Uses body.admin-bar (added by WordPress only for authenticated users),
 * so the public site is unaffected.
 */
@media screen and (max-width: 1023px) {
  body.admin-bar .Header-module__header {
    top: var(--wp-admin--admin-bar--height, 32px);
  }
}

/* Keep the admin bar fixed on small screens so the header offset stays aligned. */
@media screen and (max-width: 600px) {
  body.admin-bar #wpadminbar {
    position: fixed;
  }
}
