/* ============================================
   Reset — Mount Rinjani
   Modern CSS reset, minimal and opinionated
   ============================================ */

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

/* Reset list styles only for nav/menu lists.
   Content lists get bullets by default. */
nav ul,
nav ol,
.nav__links,
.footer__links,
.footer__social,
.trust-bar,
.intro__links,
.hero__cta-row {
  list-style: none;
}

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