/* Chakra Serenity — reset. Loaded first, owns no colour and no type choices. */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Anchored headings land clear of the sticky header rather than underneath it. */
  scroll-padding-top: 88px;
}

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

ul[class], ol[class] { list-style: none; }

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

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

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

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

table { border-collapse: collapse; width: 100%; }

/* A visible, high-contrast focus ring everywhere. Removing focus outlines is
   the single most common accessibility regression in WordPress themes; this
   file makes the ring a deliberate, styled thing so nobody is tempted to. */
:focus-visible {
  outline: 2px solid var(--cs-focus);
  outline-offset: 2px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

[hidden] { display: none !important; }
