/*
 * Landing page hero form: center the product checkbox question and choices.
 * Gravity Forms renders inline choices (gf_list_inline) as inline-block inside
 * a block container, so they're centered with text-align rather than flexbox.
 */
.hero-form .gform_wrapper.gravity-theme .gfield--type-checkbox .gfield_label {
	width: 100%;
	text-align: center;
}

.hero-form .gform_wrapper.gravity-theme .gfield--type-checkbox .gfield_checkbox {
	text-align: center;
}

/* Drop the trailing gutter so the choice group sits truly centered. */
.hero-form .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice:last-child {
	padding-inline-end: 0;
}
