/*
 * Base Reset
 */

@layer base {
  * {
    box-sizing: border-box;
    margin: 0;
  }

  body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: var(--font-family-sans);
    line-height: 1.25;
    overflow-x: hidden;
  }

  body.is-fixed {
    overflow-y: hidden;
  }

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

  p {
    line-height: 1.5;
  }

  a {
    text-decoration: none;
  }

  /* Targets Safari's auto-generated phone link styles */
  a[href^="tel:"] {
      color: inherit;
      text-decoration: none;
  }
}
