/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  margin-bottom: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
  text-rendering: optimizeLegibility;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
button {
  background: transparent;
  border: none;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
  margin-bottom: 0;
}
p,
li,
figcaption {
  text-wrap: pretty;
  max-width: 65ch;
  margin-bottom: 0;
}
body > :is(header, footer),
main,
section,
article {
  container-type: inline-size;
}
/* BASE */
@media (max-width: 992px) {
  .container, .container-md, .container-sm {
    max-width: unset;
  }
}
