/* Base/reset styles and shared typography */

* {
  box-sizing: border-box;
}

/* Smooth in-page jumps for anchor links (e.g. a hero CTA linking to
   #claim-form) — harmless on pages with no such links. */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--colour-ink);
  background: var(--colour-white);
}

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

/* Long unbroken strings — email addresses, URLs, phone numbers written
   without spaces — are the one thing normal wrapping can't handle, and on
   a 320px viewport a single one of them is enough to push the whole page
   into horizontal scroll. break-word only breaks a word that genuinely
   can't fit on a line of its own, so ordinary copy is unaffected. */
p,
li,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
