/* === RESET.CSS === */
/* 1. Set box-sizing to border-box for all elements */
*, *::before, *::after {
    box-sizing: border-box;
  }
  
  /* 2. Remove default margin and padding */
  body, h1, h2, h3, h4, h5, h6, p, blockquote,
  figure, dl, dd, ul, ol, li,
  fieldset, legend, pre, input, button, textarea {
    margin: 0;
    padding: 0;
  }
  
  /* 3. Set consistent font and line-height for body */
  body {
    line-height: 1.5;
    font-family: var(--site-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* 4. Remove list styles */
  ul, ol {
    list-style: none;
  }
  
  /* 5. Remove default button styles */
  button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
  }
  
  /* 6. Remove anchor default styles */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* 7. Make images behave consistently */
  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
  }
  
  /* 8. Make form elements inherit font */
  input, button, textarea, select {
    font: inherit;
  }
  
  /* 9. Remove all animations and transitions for people who prefer reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation: none !important;
      transition: none !important;
      scroll-behavior: auto !important;
    }
  }
  
  /* 10. HTML5 elements default display (older browsers) */
  article, aside, details, figcaption, figure,
  footer, header, main, menu, nav, section, summary {
    display: block;
  }
  
  img, video {
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
  }