  /* Базовый стиль карточек */
  .t-store__card {
    width: 290.24px;
  /*  height: 618.24px;
    min-height: 618.24px !important;*/
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
/*    border: 1px solid #ccc;
    border-radius: 8px; */
  }
  
    .t-store__card__title {
        height:40px;
  }
  
  .t-store__card__descr {
        height:50px;
  }
  
  .t-store__card__price-value{
 
  }


  /* Стиль для изображений внутри карточки */
  .t-store__card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Для экранов с шириной от 1024px (десктопы) */
  @media (min-width: 1024px) {
    .t-store__card {
      width: 290.24px;
     /* height: 618.24px;
      min-height: 618.24px !important;*/
    }
  }

  /* Для экранов от 768px до 1023px (планшеты) */
  @media (min-width: 768px) and (max-width: 1023px) {
    .t-store__card {
      width: 220px;
    /*  height: calc(618.24px / 290.24 * 220px);*/
    }
  }

  /* Для экранов меньше 768px (мобильные устройства) */
  @media (max-width: 767px) {
    .t-store__card {
      width: 180px;
  /*    height: calc(618.24px / 290.24 * 180px);*/
    }
  }

.t-store__card {
 /*  width: 290.24px !important;*/
 /* height: 618.24px !important;*/
 /* min-height: 618.24px !important;*/
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  overflow: hidden !important;
/*  border: 1px solid #ccc !important;
  border-radius: 8px !important; */
}


.t-store__card__textwrapper {
    height:260px!important;
    display: flex;
   // justify-content: space-between;
   justify-content: flex-start;
    flex-direction: column;
}

  /* Для экранов с шириной менее 1024px */
  @media (max-width: 1024px) {
.t-store__card__textwrapper {
   height:200px!important;
}
  }

