
@media only screen and (min-width: 768px) {
	html {
		--gah-block-padding: 3.5rem;
	}
}


/* Match the Astra container breakpoints at 768, 1024, and 1200 */
@media only screen and (min-width: 768px) {
	html {
		--theme-max-content-width: min((100vw - 2 * var(--theme-min-margin)), 768px);
	}
}

@media only screen and (min-width: 1024px) {
	html {
		--theme-max-content-width: min((100vw - 2 * var(--theme-min-margin)), 1024px);
	}
}

@media only screen and (min-width: 1200px) {
	html {
		--theme-max-content-width: min((100vw - 2 * var(--theme-min-margin)), 1200px);
	}
}