/* ==========================================================================
   CSS Reset
   ========================================================================== */
/* Box-sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* HTML and body reset */
html {
  font-size: 62.5%; /* 10px base for rem calculations */
  line-height: 1.15; /* Improve text rendering */
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
}

/* Reset headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Reset paragraphs */
p {
  margin: 0;
}

/* Reset links */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* Reset button */
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

button:focus {
  outline: 0.2rem solid #007bff;
  outline-offset: 0.2rem;
}

/* Reset form elements */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 0.2rem solid #007bff;
  outline-offset: 0.2rem;
}

/* Reset fieldset */
fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

/* Reset legend */
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

/* Reset table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
  text-align: left;
  vertical-align: top;
  border: none;
}

/* Reset images */
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

/* Reset figure */
figure {
  margin: 0;
}

/* Reset blockquote */
blockquote {
  margin: 0;
  padding: 0;
}

/* Reset hr */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  margin: 0;
  border: none;
  border-top: 0.1rem solid #ccc;
}

/* Reset code elements */
code,
kbd,
samp,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  font-size: 1em;
}

/* Reset small */
small {
  font-size: 80%;
}

/* Reset sub and sup */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Remove border on images inside links in IE 10 */
img {
  border-style: none;
}

/* Hide the overflow in IE */
svg:not(:root) {
  overflow: hidden;
}

/* Correct the cursor style of increment and decrement buttons in Chrome */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/* Correct the outline style in Safari */
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -0.2rem;
}

/* Remove the inner padding in Chrome and Safari on macOS */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Correct the inability to style clickable types in iOS and Safari */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/* Reset details */
details {
  display: block;
}

/* Reset summary */
summary {
  display: list-item;
  cursor: pointer;
}

/* Reset template */
template {
  display: none;
}

/* Reset hidden attribute */
[hidden] {
  display: none !important;
}

/* Focus management */
:focus {
  outline: 0.2rem solid #007bff;
  outline-offset: 0.2rem;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Selection styles */
::selection {
  background-color: #007bff;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background-color: #007bff;
  color: #fff;
  text-shadow: none;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}/*# sourceMappingURL=reset.css.map */