/* Korastel · minimal reset
   Only what the system actually relies on. No opinionated defaults that a
   consuming project would have to undo. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
fieldset {
  margin: 0;
}

fieldset {
  padding: 0;
  border: 0;
  min-inline-size: 0;
}

ul[class],
ol[class] {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

img {
  height: auto;
}

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

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

textarea {
  resize: vertical;
}

a {
  color: inherit;
}

:target {
  scroll-margin-top: calc(var(--k-header-height, 4.5rem) + var(--k-space-6));
}
