/* ============================================
   CSS VARIABLES & BASE RESETS
   ============================================ */

:root {
  --hero-footer-width-inset: 60px;
  --hero-footer-width-inset-mobile: 40px;
  --section-heading-line-height-mobile: 1.15;
}

/* Getting rid of wpadminbar; prevent horizontal scroll */
html {
  margin-top: 0 !important;
  overflow-x: hidden;
}

#wpadminbar {
  display: none !important;
}

* {
  box-sizing: border-box;
}

body {
  /* Use clip instead of hidden so position: sticky on .site-header still works */
  overflow-x: clip;
  font-family: var(
    --font-family-base,
    ui-sans-serif,
    system-ui,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji"
  );
  overflow-wrap: normal;
  word-break: normal;
  background-color: var(--site-background-color, #ffffff);
  margin: 0;
  padding: 0;
}
