/* ============================================================
   base.css — сброс, типографика, контейнер
   ============================================================ */

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--surface-muted);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

/* Иконки: размер задаётся в месте использования; цвет = currentColor */
.icon { flex: 0 0 auto; display: block; }

/* Контейнер: тянется до 1440, потом центрируется (планшет = «тянем десктоп») */
.wrap {
  width: 100%;
  max-width: calc(var(--content-max) + var(--pad-x) * 2);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
