  .t-store__card .t-store__card__imgwrapper {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
  }

  .t-store__card__imgwrapper img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .t-store__card__imgwrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0, 0, 255, 0), rgba(0, 0, 0, 0.5));
    z-index: 10;
  }
  
  .t-store__card__textwrapper { 
    position: absolute;
    transform: translate(10px, -40px);
    z-index: 10;
    font-size: calc(1.2vw + 0.5rem);
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0);
    padding: 5px 10px;
    border-radius: 4px;
    text-align: left;
    max-width: 90%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  
  .t-store__card__descr {
    visibility: hidden;
  }
  
  .t-store__grid-cont .t-col, .t-store__grid-cont .t-store__stretch-col {
    margin-bottom: 10px;
  }
     
  @media (max-width: 960px) {   
    .t-container .t-col {
      flex: 1 1 100%;
      margin-bottom: 10px;   
    }
  }      
        
  @media (max-width: 768px) {
    .t-store__card__textwrapper {
      font-size: 16px;
      transform: translate(5px, -40px);
    }
  }

  @media (max-width: 480px) {
    .t-store__card__textwrapper {
      font-size: 14px;
      transform: translate(5px, -35px);
    }
  }
