/*
 * Product cards of Creative Elements (home page grid, CE listings).
 * The file name carries its version: the Infomaniak cache ignores ?v=.
 */

/* CE ships white-space: nowrap + ellipsis on .elementor-title (its "Allow Multiline" switch is off
   in the home page widget), so every name was cut after one line. Three lines are shown (the longest pack names need three on a phone), and three are
   always reserved so that prices and buttons line up from one card to the next. */
.elementor-product-miniature .elementor-title {
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  line-height: 1.3;
  min-height: 3.9em;
}
