/* Base element rules the redesign pages were built against while they still
   loaded the legacy main.css (its global reset + link/button defaults).
   Extracted so those pages can drop the full legacy stylesheet entirely -
   the offcanvas menu itself lives in menu.css/menu.js. */

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

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}
