/* Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  font-smooth: antialiased;
  background-color: var(--bg, #ffffff);
  color: var(--text, #0f172a);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(var(--brand-primary-rgb, 222,16,32), 0.6);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}
