/* ==========================================================================
   Modern reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

/* Keep selected text clear on dark heroes and prevent the browser-default blue
   selection colour from competing with the brand palette. */
::selection { background: rgba(243, 106, 33, 0.92); color: #fff; text-shadow: none; }
::-moz-selection { background: rgba(243, 106, 33, 0.92); color: #fff; text-shadow: none; }

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  min-height: 100vh;
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4, h5, h6 { font-weight: inherit; overflow-wrap: break-word; }
p, li, figcaption { overflow-wrap: break-word; }

table { border-collapse: collapse; width: 100%; }

:target { scroll-margin-top: 6rem; }

[hidden] { display: none !important; }
