/* PDP description layout fixes — general (any product). The description sits in a
   ~half-width column, so side-by-side block columns get cramped (text squeezed to
   one word per line). Stack them one per row, full width. */

.bollaert-pdp__desc-body .wp-block-columns {
	flex-direction: column !important;
	gap: var(--wp--preset--spacing--6) !important;
}
.bollaert-pdp__desc-body .wp-block-columns > .wp-block-column {
	flex: 1 1 100% !important;
	width: 100% !important;
	min-width: 0;
}

/* Feature cards (media-text): image on the left, text on the right.
   Stacks (image on top) on narrow screens. */
.bollaert-pdp__desc-body .wp-block-media-text {
	display: grid !important;
	grid-template-columns: minmax(150px, 34%) 1fr !important;
	gap: var(--wp--preset--spacing--5);
	align-items: center;
}
.bollaert-pdp__desc-body .wp-block-media-text .wp-block-media-text__content { padding: 0; }
@media (max-width: 640px) {
	.bollaert-pdp__desc-body .wp-block-media-text { grid-template-columns: 1fr !important; }
}

/* BI-tube / MONO-tube install instructions: clean stacked cards */
.bollaert-pdp__desc-body .bollaert-install-tubes > .wp-block-column {
	border: 1px solid var(--wp--preset--color--border);
	border-radius: 12px;
	padding: var(--wp--preset--spacing--5);
	background: var(--wp--preset--color--brand-bg);
}
.bollaert-pdp__desc-body .bollaert-install-tubes .wp-block-image img { max-width: 100%; height: auto; }
.bollaert-pdp__desc-body .bollaert-install-tubes a { font-weight: 600; }
