/**
 * Content Block — centered text-only section with optional eyebrow + button.
 */

.module.content-block .grid {
	gap: var(--text-spacing-small);
}

.module.content-block :is(.eyebrow, .heading-1, .heading-2, .heading-3, .content-styles, .buttons) {
	grid-column: 3 / -3;
}

.module.content-block :is(.heading-1, .heading-2, .heading-3) {
	color: var(--maroon);
}

.module.content-block :is(.heading-1, .heading-2, .heading-3) em {
	font-style: italic;
}

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

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

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

	.module.content-block :is(.eyebrow, .heading-1, .heading-2, .heading-3, .content-styles, .buttons) {
		grid-column: 1 / -1;
	}

}
