/* ============================================================
   Minimal Reset
   Normalize browser defaults without opinionated styles.
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

fieldset {
  border: none;
}

a {
  color: inherit;
}

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
}

/* SVG icons inline in text */
svg[aria-hidden] {
  display: inline-block;
  vertical-align: -0.115em;
  flex-shrink: 0;
}

/* Hidden attribute must win over display */
[hidden] {
  display: none !important;
}
