/* =========================================================
   /src/css/core/reset.css
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-light-gray);
  margin: 0;

  padding-top: 56px;

  font-family: var(--font-sans);
  color: var(--text-color);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  height: 100%;
}

#app-main {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* =========================================================
   Cross-document view transitions intentionally disabled.
   Chrome may surface "AbortError: Transition was skipped" during
   document navigation when automatic view transitions are skipped.
   Keep navigation deterministic and quiet; page-level transitions
   should be added deliberately where they improve UX and respect
   prefers-reduced-motion.
   ========================================================= */