/* MGH Hero – mobile-first; tokens at 1280px breakpoint. Base = mobile, desktop only in min-width.
   Hero-only layout caps: background strip max 1920px; inner content max 1512px (desktop). */
.mgh-hero {
	position: relative;
	display: flex;
	align-items: flex-start;
	height: 600px;
	width: 100%;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

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

/* Mobile first (0–1279px): content max 884px, gap 20, token mobile_heading_1, mobile_paragraph */
.mgh-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	max-width: 884px;
	margin-left: auto;
	margin-right: auto;
	padding: 243px 1.5rem 0;
}

.mgh-hero .mgh-hero__title {
	font-family: Poppins, sans-serif;
	font-size: 41px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0;
}

.mgh-hero .mgh-hero__description {
	font-family: Poppins, sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: 0;
}

.mgh-hero__title {
	margin: 0;
}

.mgh-hero__description {
	margin: 0;
}

/* Desktop (1280px+): token heading_1; gap 10. Content up to 1512px, centered in hero (≤1920). */
@media (min-width: 1280px) {
	.mgh-hero__content {
		max-width: 1512px;
		gap: 10px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
	}
	.mgh-hero .mgh-hero__title {
		font-size: 53px;
	}
}
