/* Keep product cards aligned when supplier names and descriptions have different lengths. */
.fm-category-products {
  align-items: stretch;
}

.fm-category-products > .product-layout {
  display: flex;
  align-items: stretch;
}

.fm-category-products > .product-layout > .fm-module-item {
  width: 100%;
  min-height: 100%;
}

.fm-category-products .fm-category-product-caption {
  min-height: 0;
}

.fm-category-products .fm-category-product-model {
  height: 46px;
  overflow: hidden;
}

.fm-category-products .fm-module-title {
  height: 90px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}

.fm-category-products .fm-module-title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.fm-category-products .fm-module-price {
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.fm-category-products .fm-category-btn-box {
  margin-top: auto;
}

@media (max-width: 767px) {
  .fm-category-products .fm-category-product-model {
    height: 40px;
  }

  .fm-category-products .fm-module-title {
    height: 74px;
  }
}
