/* ================================= PRODUKTGRID – GLEICHE KACHELN ================================= */ .products-grid .product-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); align-items: stretch; /* WICHTIG */ } .products-grid .product-item { display: flex; } /* ================================= KACHEL-INHALT ================================= */ .products-grid .product-item-info { display: flex; flex-direction: column; width: 100%; height: 100%; /* Füllt die Grid-Zelle */ box-sizing: border-box; } /* ================================= BILDBEREICH ================================= */ .products-grid .product-item-photo .product-image-container { height: 200px; display: flex; align-items: center; justify-content: center; } .products-grid .product-item-photo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; } /* ================================= TEXTBEREICH ================================= */ .products-grid .product-item-details { padding-top: 30px; display: flex; flex-direction: column; flex-grow: 1; } /* ================================= PRODUKTNAME – FIX 6 ZEILEN ================================= */ .products-grid .product-item-name { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; overflow: hidden; text-overflow: ellipsis; line-height: 1.4em; height: calc(1.4em * 6); word-break: break-word; } /* ================================= PREIS – IMMER UNTEN ================================= */ .products-grid .price-box { margin-top: auto; }

Suchergebnisse für: "strassennamenschildern+data"