/**
 * D11-specific: Drupal's admin toolbar (#toolbar-administration) is fixed at
 * the top of the viewport for logged-in admins, covering whatever the theme
 * renders at the top of <body> (#top-line-wrapper etc.) — the D7 site never
 * had to account for this (it used the contrib admin_menu module, handled
 * via the .admin-menu body class in the ported CSS). Core Toolbar's height
 * varies (tray open/closed, horizontal/vertical), so instead of a fixed
 * value, base.js's eTheme.plugins.adminMenu keeps this custom property in
 * sync via Drupal.displace(). Loads after all.css (which sets
 * `body{padding:0}`) to win the cascade.
 */
body {
  padding-top: var(--toolbar-offset-top, 0px);
}
