@charset "utf-8";
/* CSS Document */
/* assets/css/reset.css */

/* 1) Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2) Remove default margin */
* {
  margin: 0;
}

/* 3) Improve text rendering + prevent iOS text size adjust */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* 4) Body defaults */
body {
  min-height: 100dvh;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* 5) Media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 6) Form elements inherit fonts */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* 7) Buttons: keep pointer */
button,
[type="button"],
[type="submit"],
[type="reset"] {
  cursor: pointer;
}

/* 8) Avoid textarea horizontal resize */
textarea {
  resize: vertical;
}

/* 9) Links: keep styling in base.css if needed */
a {
  color: inherit;
  text-decoration: none;
}

/* 10) Lists: you’ll style these in components/base */
ul, ol { margin: 0; padding: 0; list-style: none; }

/* 11) Headings: avoid huge default sizes */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* 12) Prevent text overflow */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 13) Improve focus visibility (a11y) */
:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* 14) Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}