@media screen and (max-width: 640px) {
  /* Делаем внутренний контейнер гибким и добавляем отступы по бокам */
  .uc-selectiongp .t-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    padding-left: 20px !important;  /* Отступ слева */
    padding-right: 20px !important; /* Отступ справа */
    box-sizing: border-box !important;
  }
  
  /* Карточки подстроятся под новую ширину контейнера */
  .uc-selectiongp .t-container > div {
    width: 48% !important; 
    max-width: 48% !important;
    flex: 0 0 48% !important;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  
  /* Прячем технические разделители Тильды */
  .uc-selectiongp .t-container > .t-clear {
    display: none !important;
  }
}