/* Растянуть 12-колоночный контейнер записи на всю ширину */
.t-rec.uc-fw-12 .t-container,
.t-rec.uc-fw-12 .t-container_100{
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (min-width: 1200px){
  .t-rec.uc-fw-12 .t-row{
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .t-rec.uc-fw-12 .t-col{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Вариант с «безопасными» полями по краям */
.t-rec.uc-fw-12.uc-fw-12--pad .t-container{
  padding-left: 20px !important;
  padding-right: 20px !important;
}
@media (min-width: 1200px){
  .t-rec.uc-fw-12.uc-fw-12--pad .t-container{
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
/* Снимаем внутренние ограничители ширины внутри блока с классом uc-fw-12 */
.t-rec.uc-fw-12 .t-col,
.t-rec.uc-fw-12 [class^="t-col_"],
.t-rec.uc-fw-12 [class*="t-width_"],
.t-rec.uc-fw-12 [class*="__container"],
.t-rec.uc-fw-12 .t-card,
.t-rec.uc-fw-12 .t-card__container {
  max-width: none !important;
}

/* На всякий: если внутри есть вложенный .t-container — тоже растягиваем */
.t-rec.uc-fw-12 .t-container .t-container {
  max-width: none !important;
  width: 100% !important;
}

/* Оставляем (или добавляем) нулевые отступы сетки, чтобы был «в ноль» по краям */
.t-rec.uc-fw-12 .t-row{ margin-left:0 !important; margin-right:0 !important; }
.t-rec.uc-fw-12 .t-col{ padding-left:0 !important; padding-right:0 !important; }

/* Если нужны «безопасные» поля по краям — добавьте к блоку второй класс uc-fw-12--pad */
.t-rec.uc-fw-12.uc-fw-12--pad .t-container{ padding-left:20px!important; padding-right:20px!important; }
@media (min-width:1200px){
  .t-rec.uc-fw-12.uc-fw-12--pad .t-container{ padding-left:40px!important; padding-right:40px!important; }
}
