.block-product-title {
  flex-shrink: 0;
  padding-inline-end: 4px;
  color: rgb(var(--color-text));
  background-color: var(--background-color);
}

.block-product-title span {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: var(--max-row);
  -webkit-box-orient: vertical;
}

.block-product-title.custom-line-height span {
  line-height: var(--product-title-line-height);
}

.block-product-title.reserve-title-height span {
  min-height: calc(var(--max-row) * var(--product-title-line-height) * 1em);
}
