/* Those decorative headers are inline SVG.
** Inline SVG is known to render differently in IE than other browsers.
** Luckily there’s a quick fix:
*/

/* Remove the following declarations */
@media (min-width: 601px) {
	.WeedingTeaser-heading { max-height: 60px; }
	.PickerTeaser-heading { max-height: 60px; }
}

/* And instead, replace them with the following ones */
@media (min-width: 601px) {
	.WeedingTeaser-heading svg { max-height: 60px; }
	.PickerTeaser-heading svg { max-height: 60px; }
}