/** Preserve publisher artwork proportions on native WooCommerce archives. */
body.woocommerce.archive ul.products li.product a img {
	display: block;
	width: 100%;
	height: clamp(300px, 26vw, 420px);
	margin: 0 0 1em;
	aspect-ratio: auto;
	object-fit: contain;
	object-position: center;
	background: #fff;
}

@media (max-width: 600px) {
	body.woocommerce.archive ul.products li.product a img {
		height: 300px;
	}
}
