/*
 * この reset は @layer 内に置く。layer 外では Polaris の同名宣言より強くなり、Tailwind preflight にも後勝ちする。
 * line-height は Mantine の 1.55 を引き継がず、Tailwind / UA の既定に委ね、行間が 0.8px 詰まる（/colorme-guide は 4376px → 4366px、-10px）差分を受容する。
 */
@layer journify-base {
  :root {
    color-scheme: light;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  input,
  button,
  textarea,
  select {
    font: inherit;
  }
}
