:root {
  color-scheme: light;
  --ink: #141414;
  --line: rgba(20, 20, 20, 0.18);
  --soft: #f5f2ec;
  --red: #ff0000;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  color: var(--ink);
  background: #ffffff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

main {
  padding: 18px 20px 22px;
}

h1 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.subtitle {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 700;
}

h2 {
  margin: 24px 0 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

p {
  margin: 0 0 10px;
}

.list-line {
  margin-left: 18px;
  text-indent: -18px;
}

ul {
  margin: 0 0 12px 20px;
  padding: 0;
}

li {
  margin: 0 0 6px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 12px 0 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  table-layout: auto;
}

th,
td {
  border: 1px solid var(--line);
  padding: 8px 10px;
  vertical-align: top;
  text-align: left;
}

th {
  background: var(--soft);
  font-weight: 700;
}

td:first-child,
th:first-child {
  font-weight: 700;
}

tr:nth-child(even) td {
  background: rgba(245, 242, 236, 0.45);
}

a {
  color: var(--red);
}
