/**
 * General product card fixes (Home / Order Now) — unrelated to badges,
 * kept in their own file rather than mixed into badges.css.
 */

/* Product card title link — inherits default blue/underlined link
 * styling unless overridden, since card titles link to the product page. */
.mv-product-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

/* Lock the description to a consistent 2-line height regardless of how
 * long the text is, so product cards in the same row line up evenly
 * instead of some being taller than others based on description length.
 * min-height reserves the space even for short descriptions; the
 * line-clamp truncates longer ones with an ellipsis. */
.mv-product-card__body p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}