.section-link-slider-product-overview {
  margin-bottom: 20px;
  
  .link-item {
    display: block;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    
    .image-wrapper {
      height: 190px;
      padding: 10px 10px 0 10px;

      @media (max-width: 991px) {
         height: 130px;
      }
      
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    .content-wrapper {
      padding: 16px 10px;
      
      h3 {
        min-height: 33px;
        color: var(--grey-950);
        font-size: 14px;
        text-align: center;
      }
    }
  }
}

.product-grid-container {
  padding-left: 50px;
}