@media screen and (max-width: 640px) {
/*  .tmenu-mobile {
  /*  height: 90px !important; /* Задай нужную высоту */
   /* padding-top: 10px !important;*/
   /* padding-bottom: 10px !important;*/
/*  }

  .tmenu-mobile__container {
    height: 90px !important;
  }

  .tmenu-mobile__imglogo {
    max-height: 90px !important;
    max-width: 90px !important;
}
}

@media screen and (min-width: 641px) and (max-width: 980px) {
  .tmenu-mobile {
    height: 90px !important;
    /*padding-top: 10px !important;*/
   /* padding-bottom: 10px !important;*/
/*  }

  .tmenu-mobile__container {
    height: 90px !important;
  }

  .tmenu-mobile__imglogo {
    max-height: 90px !important;
    max-width: 90px !important;
  }
}
*/
li[data-list="bullet"] {
  list-style: none;
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.4em;
  line-height: 1.4; /* задать чёткую высоту строки */
}

li[data-list="bullet"]::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.2em; /* поднимаем точку к центру строки */
  color: #648f04;
  font-size: 0.6em; /* делаем точку меньше */
  line-height: 1;
}

/* Работает только внутри нужного блока */
.reviews-fix .t-slds__item .t-container {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* Левая колонка с фото: фиксируем пропорции и обрезаем лишнее */
.reviews-fix .t-slds__item .t-container .t-col:first-child {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4 / 3;      /* держит форму; можно 16/9 */
  max-height: 520px;        /* подправьте под дизайн */
}

/* Картинка заполняет контейнер без «растягивания» */
.reviews-fix .t-slds__item .t-container .t-col:first-child img,
.reviews-fix .t-slds__item .t-container .t-col:first-child .t-bgimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;        /* магия: красиво режет по краям */
  object-position: center;
  display: block;
}

/* Правая колонка с текстом */
.reviews-fix .t-slds__item .t-container .t-col:last-child {
  flex: 1 1 50%;
  display: flex;
  padding: 32px;
  border-radius: 20px;
}

/* Мобильная версия: складываем в колонку */
@media (max-width: 980px) {
  .reviews-fix .t-slds__item .t-container {
    flex-direction: column;
    gap: 20px;
  }
  .reviews-fix .t-slds__item .t-container .t-col:first-child {
    aspect-ratio: 16 / 9;   /* на телефонах обычно лучше шире */
    max-height: 320px;
  }
  .reviews-fix .t-slds__item .t-container .t-col:last-child {
    padding: 20px;
  }
}

/* Если aspect-ratio у вас не сработает (редкие старые браузеры), раскомментируйте «паддинг-хак»:
.reviews-fix .t-slds__item .t-container .t-col:first-child { height: auto; }
.reviews-fix .t-slds__item .t-container .t-col:first-child::before {
  content: ""; display: block; padding-top: 75%;  // 4:3
}
*/

