/* reset.css — минимальный сброс стилей */

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { margin: 0 0 var(--space-4) 0; font-weight: 700; line-height: 1.2; }
p { margin: 0 0 var(--space-4) 0; }
ul, ol { margin: 0 0 var(--space-4) 0; padding-left: 1.4em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: var(--text-base); }
table { border-collapse: collapse; width: 100%; }
