/**
 * Heading + Content — heading on the left (cols 2-5), content on the right (cols 7 to -2).
 */

.module.heading-content .container.grid {
	align-items: start;
}

.module.heading-content .heading-2 {
	color: var(--maroon);
	grid-column: 2 / span 3;
}

.module.heading-content .content-styles {
	color: var(--maroon);
	grid-column: 5 / -2;
	margin: 12px 0 0;
}

.module.heading-content .content-styles p {
	margin: 0;
}

.module.heading-content .content-styles > p + p {
	margin-top: var(--text-spacing-xsmall);
}

/*
 * ====================================================================== *
 * MQ <=950px — Tablet
 * ====================================================================== *
 */

@media only screen and (max-width: calc(950rem / 16)) {

	.module.heading-content {
		text-align: center;
	}

	.module.heading-content .heading-2,
	.module.heading-content .content-styles {
		grid-column: 1 / -1;
		grid-row: auto;
	}

	.module.heading-content .content-styles {
		margin-top: 0;
	}

}
