/*
 * Hero search form (houzez_elementor_search_builder) — desktop alignment.
 *
 * Every field group carries Bootstrap's .form-group (margin-bottom: 1rem) and the
 * select wrappers carry it again, but the submit button group carries neither.
 * On one row that extra 16px pushes the button below the inputs and leaves the
 * price field vertically off from the rest. The widget's own row_gap setting
 * already handles spacing once the fields wrap, so the margin is redundant here.
 *
 * Scoped to desktop: below 1025px the fields stack full width and the original
 * margins are what give them their breathing room.
 */

@media (min-width: 1025px) {

	.houzez-ele-search-form-wrapper > .elementor-field-group {
		margin-bottom: 0;
		align-content: flex-end;
	}

	.houzez-ele-search-form-wrapper > .elementor-field-group .elementor-select-wrapper {
		margin-bottom: 0;
	}
}
