
/* Фон блока + overlay */
#rec1249310511 {
  position: relative;
  box-sizing: border-box;
  padding: 40px 20px;
  background-image: url("https://cdn.midjourney.com/u/e0e64732-3bc7-4a6d-be87-e716c46f23ea/e77432d681b9eea1e14873fee7a6c19e9a597d7480592cb5b3f208843756613f.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: visible;
}
#rec1249310511::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0); /* затемнение, подправьте по вкусу */
  pointer-events: none;
}

/* Задаём контейнеру блокам колонок флекс для контроля gap.
   Пробуем несколько возможных селекторов контейнера Tilda, чтобы сработало надёжно. */
#rec1249310511 .t-container,
#rec1249310511 .t-row,
#rec1249310511 .t-columns {
  display: grid !important;
  grid-template-columns: repeat(2, 360px);
  column-gap: 340px;
  row-gap: 20px;
  justify-content: center; /* центрирует сетку в блоке */
  box-sizing: border-box;
}

/* Подстраховка: если флекс сломается при очень узком экране, включаем перенос */
@media (max-width: 1200px){
  #rec1249310511 .t-container,
  #rec1249310511 .t-row,
  #rec1249310511 .t-columns,
  #rec1249310511 .r {
    flex-wrap: wrap;
    gap: 40px !important;
  }
}

/* Колонки 50% по умолчанию у вас — принудительно делаем их фиксированными 460px */
#rec1249310511 .t-col.t-col_12 {
  flex: 100 100 500px !important;
  width: 360px !important;
  max-width: 360px !important;
  box-sizing: border-box;
}

/* Внутренний контент (аккордеон) занимает всю ширину колонки */
#rec1249310511 .t585__wrapper,
#rec1249310511 .t585__header,
#rec1249310511 .t585__content {
  width: 100% !important;
  box-sizing: border-box;
}

/* Мобильные стили: на узких экранах делаем колонки фулл-ширины */
@media (max-width: 899px) {
  #rec1249310511 .t-container,
  #rec1249310511 .t-row,
  #rec1249310511 .t-columns,
  #rec1249310511 .r {
    flex-direction: column;
    align-items: stretch;
    gap: 20px !important;
  }
  #rec1249310511 .t-col.t-col_6 {
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: none !important;
  }
}