/*
 * The live SGG card markup uses a flex-column body. Some title rows contain
 * two lines and others contain three, so their following paragraphs otherwise
 * begin at different heights. Reserve one identical three-line row for each.
 */
@media (min-width: 768px) {
	.sgg-product-card .sgg-product-title-row {
		height: 51px !important;
		min-height: 51px !important;
		flex: 0 0 51px !important;
	}

	/* Remove positioning left behind by versions 2 and 3 without moving links. */
	.sgg-product-card .sgg-product-body > p {
		position: static !important;
		top: auto !important;
		transform: none !important;
	}
}

