@layer core {
  /*=========================
     Table of Contents
  =========================*/
  /*
     1    CSS Reset
     4    Box Model
     17   Document
     30   Typography
     42   Media
     61   Forms
     88   Links
     95   Lists
     102  Tables
     109  Hidden
     115  Accessibility
  */

  /*=========================
   CSS Reset
=========================*/
  /*=========================
   Box Model
=========================*/
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  * {
    margin: 0;
    padding: 0;
    min-width: 0;
  }
  /*=========================
   Document
=========================*/
  html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
  }
  body {
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-synthesis: none;
  }
  /*=========================
   Typography
=========================*/
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    overflow-wrap: break-word;
  }
  /*=========================
   Media
=========================*/
  img,
  picture,
  video,
  canvas,
  svg {
    display: block;
    max-width: 100%;
  }
  img,
  picture,
  video {
    height: auto;
  }
  svg {
    flex-shrink: 0;
  }
  /*=========================
   Forms
=========================*/
  button,
  input,
  textarea,
  select {
    font: inherit;
    color: inherit;
  }
  button {
    appearance: none;
    border: none;
    background: none;
    cursor: pointer;
  }
  button:disabled {
    cursor: not-allowed;
  }
  input,
  textarea,
  select {
    outline: none;
  }
  textarea {
    resize: vertical;
  }
  /*=========================
   Links
=========================*/
  a {
    color: inherit;
    text-decoration: none;
  }
  /*=========================
   Lists
=========================*/
  ul,
  ol {
    list-style: none;
  }
  /*=========================
   Tables
=========================*/
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  /*=========================
   Hidden
=========================*/
  [hidden] {
    display: none !important;
  }
  /*=========================
   Accessibility
=========================*/
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
}
