/**
 * Desktop header submenu: anchor dropdown to the parent menu item.
 * Theme uses position:absolute; top:100% on .header__dropdown — without a
 * positioned .menu__item.parent the containing block can be too tall.
 */
@media only screen and (min-width: 768px) {
	.header__menu__inner > .menu__item.parent {
		position: relative;
		align-self: center;
	}

	.header__menu__inner > .menu__item.parent > .header__dropdown {
		top: 100%;
		left: 0;
		right: auto;
		width: auto;
		min-width: 100%;
	}
}
