.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 .block-product-title__mobile-short {
  display: none;
}

@media (max-width: 959px) {
  .block-product-title[data-mobile-short-title="true"]
    .block-product-title__full {
    display: none;
  }

  .block-product-title[data-mobile-short-title="true"]
    .block-product-title__mobile-short {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
