/* Native iPhone: keeps the first screen below the Dynamic Island. */
@supports (padding-top: env(safe-area-inset-top)) {
  @media (max-width: 1023px) {
    #app > main > section:first-child {
      padding-top: calc(1.75rem + env(safe-area-inset-top));
    }
  }
}
