/* ==========================================================
   PRODUCT PRESENTATION
   ========================================================== */

.product-presentation {
	display:grid;
	grid-template-columns:1fr;
	width:100%;
}

/* Mobile : Waltair avant VDIM */

.product-presentation__why {
	order:1;
}

.product-presentation__vdim {
	order:2;
}

/* Desktop */

@media (min-width:900px) {

	.product-presentation {
		grid-template-columns:minmax(0, 2fr) minmax(360px, 1fr);
		align-items:stretch;
	}

	.product-presentation__vdim {
		order:1;
		min-width:0;
	}

	.product-presentation__why {
		order:2;
		min-width:0;
	}

}