/* === TABLE FULL-WIDTH FIX (float clearing) === */

/* 1) Таблица не должна участвовать в обтекании */
.inner-max-width:not(.tournaments) .game-article table:not(.slotstable),
.inner-max-width:not(.tournaments) .ftmArticle table:not(.slotstable){
  float: none !important;
  clear: both !important;      /* КЛЮЧ: сбрасывает “половинную” колонку */
  display: table !important;
  width: 100% !important;      /* на всю ширину блока статьи */
  max-width: 100% !important;
  margin: 15px 0 !important;
}

/* 2) Если вокруг таблицы есть обёртки/параграфы — тоже очищаем */
.inner-max-width:not(.tournaments) .game-article table:not(.slotstable),
.inner-max-width:not(.tournaments) .game-article table:not(.slotstable) *{
  box-sizing: border-box !important;
}

/* 3) На всякий случай: переносы (у тебя уже видно, что они есть, но пусть будет) */
.inner-max-width:not(.tournaments) .game-article table:not(.slotstable) td,
.inner-max-width:not(.tournaments) .game-article table:not(.slotstable) th,
.inner-max-width:not(.tournaments) .ftmArticle table:not(.slotstable) td,
.inner-max-width:not(.tournaments) .ftmArticle table:not(.slotstable) th{
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
  height: auto !important;
}
