/*
 * The header search modal is vertically centered by Blocksy (#search-modal's
 * --vertical-alignment: center). On mobile that puts the input roughly in the
 * middle of the screen, which is exactly where the on-screen keyboard's
 * suggestion strip sits once it opens -- the field and the live results below
 * it end up covered. Anchoring to the top keeps both clear of the keyboard.
 */
@media (max-width: 689px) {
	#search-modal {
		--vertical-alignment: flex-start;
	}

	#search-modal .ct-panel-content-inner {
		padding-top: 20px;
	}
}
