/*
  WGA Concept and WGA Site Forge carry "How it works" below the fold, so their
  page always scrolls and the browser always reserves a scrollbar: every one of
  their front doors lays out in a window 15px narrower than this one. WGA
  Render's canvas fills the window and never scrolls, so without the same
  reservation its centred pair sat about 8px to the right of theirs — half the
  strip — and its right-aligned account corner a full 15px to the right.
  Measured on the three published pages, that was the only difference left
  between them.

  `scrollbar-gutter: stable` reserves the strip whether or not there is anything
  to scroll, which is what the other two get for free by being taller than the
  window. Phones overlay their scrollbars and reserve nothing, so nothing
  changes there.

  This lives in a file rather than a `<style>` block because `site-check`
  refuses inline style in a published shell.
*/
html {
  scrollbar-gutter: stable;
}
