/* MGH Image Banner – full-width image with title and button centered. No top margin/padding. Desktop height 686px. */

.mgh-image-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 400px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-top: 0;
	padding-top: 0;
}

.mgh-image-banner__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.mgh-image-banner__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 20px;
	width: 100%;
	max-width: 884px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.mgh-image-banner__title {
	margin: 0;
	line-height: 1.2;
	color: #fff;
}

.mgh-image-banner__button-wrap {
	margin: 0;
}

/* Desktop: fixed height 400px */
@media (min-width: 1280px) {
	.mgh-image-banner {
		height: 400px;
		min-height: 400px;
	}
}
