/* Box sizing and universal resets */
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Document defaults */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: "Commissioner", sans-serif;
  color: #000;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* Anchor elements */
a {
  display: inline-flex;
  text-decoration: none;
  color: inherit;
}

/* Headings */
:where(h1, h2, h3, h4, h5, h6) {
  font-weight: 600;
  text-wrap: balance;
  margin-block: 1rem;
}

:where(h1, h2, h3) {
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 1.9231rem + 2.5641vw, 5rem);; font-weight: 700; color: #fff;
}
h2 {
  font-size: clamp(1.625rem, 1.4808rem + 0.641vw, 2.25rem); font-weight: 700;
}
h3 {
  font-size: clamp(1.5rem, 1.4135rem + 0.3846vw, 1.875rem); font-weight: 700;
}
h4 {
  font-size: clamp(1.25rem, 1.1923rem + 0.2564vw, 1.5rem); font-weight: 700;
}
h5 {
  font-size: clamp(1.125rem, 1.0962rem + 0.1282vw, 1.25rem); font-weight: 700;
}
h6 {
  font-size: 1.125rem;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/* Lists */
:where(ul, ol) {
  list-style: none;
  padding-left: 0;
  margin-block: 0;
}

/* Tables */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
  width: 100%;
}

td,
th {
  text-align: left;
  padding: 0;
}

/* Images */
img,
video {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Forms */
input,
textarea,
select,
button {
  font: inherit;
  margin: 0;
  border: none;
  background: transparent;
  outline: none;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Accessibility */
[hidden] {
  display: none !important;
}

[aria-hidden="true"] {
  visibility: hidden;
}

/* Embedded content */
iframe {
  border: 0;
}

svg *[fill]:not([fill="none"], [fill^="url"]),
svg *[stroke]:not([stroke="none"], [stroke^="url"]) {
  fill: currentColor;
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

/* Reduced motion for animations and transitions */
@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;
  }
}

/* Miscellaneous */
hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 1.5rem 0;
}

fieldset,
:where(fieldset[class]) {
  margin: 0;
  padding: 0;
  border: none;
}

address,
:where(address[class]) {
  font-style: normal;
}

:where(blockquote, figure):where([class]),
:where(blockquote, figure) {
  margin: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

dd {
  margin-left: 0;
}

:where(:target) {
  scroll-margin-top: 1em; /* Adjust as needed */
}
.container {
  max-width: 92rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
