/* ============================================================
   01Academy · Reset
   Современная нормализация. Без «обнуляем всё подряд».
   ============================================================ */

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

*{ margin: 0; }

html{
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body{ min-height: 100svh; }

/* Медиа не ломает сетку */
img, picture, video, canvas, svg{
  display: block;
  max-width: 100%;
}

/* Формы наследуют типографику */
input, button, textarea, select{
  font: inherit;
  color: inherit;
}

/* Длинные слова не рвут вёрстку */
p, h1, h2, h3, h4, h5, h6, li{
  overflow-wrap: break-word;
}

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

a{
  color: inherit;
  text-decoration: none;
}

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

table{
  border-collapse: collapse;
  width: 100%;
}

summary{ cursor: pointer; }
summary::-webkit-details-marker{ display: none; }
