/* DCM CSS Grid - Override Divi column defaults when grid is active on a row */

.dcm-grid-row.et_pb_row {
	display: grid !important;
}

/* Reset Divi column widths — CSS Grid controls sizing */
.dcm-grid-row > .et_pb_column {
	width: auto !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
	min-width: 0; /* Prevent grid blowout */
}

/* Prevent Divi's responsive column stacking from interfering with grid */
@media only screen and (max-width: 980px) {
	.dcm-grid-row > .et_pb_column {
		width: auto !important;
		margin-bottom: 0 !important;
	}
}

@media only screen and (max-width: 767px) {
	.dcm-grid-row > .et_pb_column {
		width: auto !important;
		margin-bottom: 0 !important;
	}
}
