/**
 * Global calculator layout. Loaded on any page rendering a [dq_*] calculator.
 * Wider on desktop, fluid on mobile — regardless of the theme's content column.
 */
.dq-calc-wrap {
	width: 100%;
	max-width: 100%;
	margin-inline: auto;
	box-sizing: border-box;
}
@media ( min-width: 60rem ) {
	.dq-calc-wrap {
		/* Desktop calculator width. Raise toward 1160px for wider. */
		max-width: 920px;
	}
}
.dq-calc-wrap > * {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
