/* Shop/category/related-products grid — clamp product title to 2 lines,
   hard-cut with no ellipsis ("..."), so mismatched title lengths don't
   break card alignment. !important guards against theme rules that set
   display:block on the same element (which would break the clamp). */

.woocommerce-loop-product__title {
  display: -webkit-box !important;
  line-clamp: 2 !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: clip !important;
  white-space: normal !important;
  max-height: none !important;
}
