html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background-color: var(--ccc-warm-white);
  color: var(--ccc-charcoal);
  font-family: var(--ccc-font-body);
  font-size: var(--ccc-text-base);
  line-height: var(--ccc-body-line-height);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--ccc-transition-fast), opacity var(--ccc-transition-fast);
}

a:hover {
  opacity: 0.84;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--ccc-muted-mustard);
  outline-offset: 3px;
}

figure,
blockquote {
  margin: 0;
}

/* Opt-in utility for Elementor HTML blocks using the CCC type system. */
.ccc-flow > * {
  margin-block: 0;
}

.ccc-flow > * + * {
  margin-top: var(--ccc-space-md);
}
