/* Minimalny reset — wczytywany TYLKO na stronach w nowym szablonie.
   Strony legacy (base_legacy.html) zostają na resecie Bootstrapa. */
*, *::before, *::after {
    box-sizing: border-box;
}

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

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

ul, ol {
    list-style: none;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.5;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

img, svg, video {
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
}

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

button {
    background: none;
    border: 0;
}

table {
    border-collapse: collapse;
}

[hidden] {
    display: none !important;
}
