/* ==========================================================================
   Минимальный reset. Заменяет Tailwind Preflight (снят вместе с самим Tailwind —
   он не собирался в проде: .gitignore игнорировал tailwind.css, Docker не
   запускает npm, так что в контейнере файл всегда был 404).
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

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

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

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

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

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

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

a { -webkit-tap-highlight-color: transparent; }

[hidden] { display: none !important; }
