/* ── Block: Таблица ─────────────────────────────────────────────────────── */

.il-table-block {
  padding: 40px 0;
}

.il-table-block__title {
font-weight: 600;
font-size: 32px;
line-height: 120%;
letter-spacing: 0px;
text-align: center;
vertical-align: middle;
text-transform: uppercase;

  color: #4D5154;
  margin-bottom: 24px;
}

.il-table-block__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.il-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.il-table__th {
  padding: 13px 35px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
  white-space: nowrap;
  background-color: #C90627;
}

.il-table__th:nth-child(odd) {
  background-color: var(--color-red);
}


/* Первая колонка — выравнивание по левому краю */
.il-table__th:first-child {
  text-align: left;
  min-width: 200px;
  padding: 13px 30px;
}

/* ── Data rows ── */

/* .il-table__tr { background: #fff; }
.il-table__tr--alt { background: #F5F6F7; } */

.il-table__td {
  padding: 13px 35px;
  font-size: 13px;
  line-height: 140%;
  color: var(--color-text);
  text-align: center;
  border-bottom: 2px solid #FFFFFF;
  background-color: #D9DDDE;
}

.il-table__td:nth-child(odd) {
  background-color: #EEF2F3;
}

.il-table__td:first-child {
  text-align: left;
  font-weight: 500;
  padding: 13px 30px;
}

/* ── Footnote ── */

.il-table-block__footnote {
  margin-top: 24px;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0px;
  color: #232325;
}

/* ── Mobile ≤ 768px ── */
@media (max-width: 768px) {
  .il-table-block { padding: 24px 0; }

  .il-table-block__title { font-size: 26px; }

  .il-table__th,
  .il-table__td { padding: 8px 10px; font-size: 12px; }

  .il-table__th:first-child { min-width: 180px; }

  .il-table-block__footnote {
    font-size: 16px;
  }
}
