/* ============================================================================
 * reset.css — minimal normalisation
 *
 * OPTIONAL. Every section stylesheet resets its own subtree, so sections are
 * correct without this file. It exists so a full page assembled from several
 * sections has consistent defaults outside them.
 * ========================================================================== */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans, ui-sans-serif, system-ui, sans-serif);
  font-size: var(--fs-base, 16px);
  line-height: 1.5;
  color: var(--color-heading, #101828);
  background-color: var(--color-surface, #FFFFFF);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd { margin: 0; }

ul, ol { margin: 0; padding: 0; }

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

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

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

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
