/*
 * Page-level overflow safety.
 *
 * `overflow-x: hidden` computes the other axis to `auto`, which can turn a
 * full-page wrapper into a nested vertical scroller. `clip` contains visual
 * decoration without creating another scrolling area.
 */
.strengths-page,
.company-page,
.faq-page {
	max-width: 100%;
	overflow-x: clip;
	overflow-y: visible;
}

.strengths-hero,
.strengths-intro,
.craft {
	max-width: 100%;
}
