/* ---------------------- */
/* CSS RESET              */
/* ---------------------- */


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


/* Apply margin reset but exclude Web Awesome components */
:not(wa-icon):not(wa-button):not(wa-menu):not(wa-menu-item):not(wa-dropdown) > * {
  margin: 0;
}

* {
  line-height: calc(1em + 0.5rem);
}

html {
  interpolate-size: allow-keywords;
}

body {
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
}

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

p, h1, h2, h3, h4, h5, h6 {
  /* overflow-wrap: break-word; */
}

p {
  text-wrap: pretty;
  overflow-wrap: break-word;
  hyphens: auto;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}