/* Love Pharm · Reviews Masonry.
 * Active ONLY when reviews-masonry.js adds .lp-masonry-on to the list, so if the
 * JS never runs you fall back to the CSS-columns layout in cusrev.css. Card
 * visuals (border, radius, padding, shadow, overflow) stay owned by cusrev.css;
 * this file only turns off columns and makes the cards JS-positionable.
 * Higher specificity than cusrev.css's column rules, so it wins regardless of
 * source order. See reviews-masonry.php / .js in this folder. */
div#reviews ol.commentlist.lp-masonry-on {
	column-count: auto !important;
	column-width: auto !important;
	column-gap: 0 !important;
	position: relative !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
div#reviews ol.commentlist.lp-masonry-on > li.review {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	margin: 0 !important;              /* vertical gap handled by JS translate */
	box-sizing: border-box !important; /* width set inline by JS = column width */
}
