/* === RESET.CSS === */

/* 1. Корректный box-sizing для всего */
html {
    box-sizing: border-box;
}

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

/* 2. Убираем дефолтные margin */
body,
h1, h2, h3, h4, h5, h6,
p,
figure,
picture {
    margin: 0;
}

/* 3. Картинки и медиа */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* 4. Списки */
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* 5. Ссылки */
a {
    text-decoration: none;
    color: inherit;
}

/* 6. Формы */
input,
button,
textarea,
select {
    font: inherit;
    margin: 0;
}

/* 7. Кнопки */
button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* 8. Accessibility (для тех, кто уменьшает анимации в системе) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
