/* MGH Emergency contact widget – static banner, content from Settings > MGH Settings */
/* Light background; Mobile H4 / Desktop H4; Mobile Paragraph / Desktop Paragraph; phone 18px 600 + icon; token blue. */
/* Container padding 60px 20px mobile, 70px 50px desktop; margin 50px left/top/right; border-radius 8px; gap 20px. */

.mgh-emergency-contact {
	--mgh-ec-blue: #2c3a60;
	display: flex;
	flex-direction: column;
	gap: 20px;
	background-color: #f4f7f6;
	border-radius: 8px;
	padding: 60px 20px;
	margin-left: 50px;
	margin-top: 50px;
	margin-right: 50px;
	color: var(--mgh-ec-blue);
	text-align: left;
}

.mgh-emergency-contact__title {
	margin: 0;
	color: var(--mgh-ec-blue);
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 1.2;
}

.mgh-emergency-contact__description {
	margin: 0;
	color: var(--mgh-ec-blue);
	font-family: Poppins, sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.4;
}

.mgh-emergency-contact__phone-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mgh-emergency-contact__icon {
	color: var(--mgh-ec-blue);
	flex-shrink: 0;
}

.mgh-emergency-contact__phone {
	color: var(--mgh-ec-blue);
	font-family: Poppins, sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
}

a.mgh-emergency-contact__phone:hover {
	text-decoration: underline;
}

.mgh-emergency-contact__placeholder {
	margin: 0;
	color: var(--mgh-ec-blue);
	opacity: 0.85;
	font-size: 14px;
	line-height: 1.4;
}

.mgh-emergency-contact__placeholder a {
	color: var(--mgh-ec-blue);
	text-decoration: underline;
}

/* Desktop */
@media (min-width: 1280px) {
	.mgh-emergency-contact {
		padding: 70px 50px;
	}

	.mgh-emergency-contact__title {
		font-size: 27px;
	}

	.mgh-emergency-contact__description {
		font-size: 14px;
	}

	.mgh-emergency-contact__phone {
		font-size: 18px;
		font-weight: 600;
	}
}
