/* The native iOS app overlays a fixed 60pt white bar at the very top of the
   screen, drawn on top of the WKWebView rather than reserving space inside it
   (see _mobile/ios/App/App/AppDelegate.swift, setupGradientView). It isn't
   part of any page's own layout, so every page needs to push its own
   top-of-page content down by that amount itself, or it renders hidden
   underneath the native bar. js/urlParamsManager.js sets data-platform="ios"
   on <body> on every page that loads it, so this one rule covers all of
   them consistently instead of each page needing its own ad-hoc fix. */
body[data-platform="ios"] {
    padding-top: 60px;
    box-sizing: border-box;
}
