.smhg-root {
	--smhg-height: 760px;
	--smhg-gap: 2px;
	--smhg-overlay-color: #000000;
	--smhg-overlay-opacity: 0.18;
	--smhg-text-color: #ffffff;
	box-sizing: border-box;
	display: block;
	position: relative;
	width: 100%;
	max-width: 100%;
	height: var(--smhg-height);
	min-width: 0;
	overflow: hidden;
}

.smhg-root *,
.smhg-root *::before,
.smhg-root *::after {
	box-sizing: border-box;
}

.smhg-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: var(--smhg-gap);
	width: 100%;
	height: 100%;
	min-width: 0;
	overflow: hidden;
}

.smhg-item {
	position: relative;
	min-width: 0;
	min-height: 0;
	background: #d8d8d8;
	overflow: hidden;
}

.smhg-image {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

.smhg-overlay {
	position: absolute;
	z-index: 2;
	inset: 0;
	pointer-events: none;
	background: var(--smhg-overlay-color);
	opacity: var(--smhg-overlay-opacity);
}

.smhg-content {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	width: min(92%, 1120px);
	margin: 0;
	padding: 24px;
	color: var(--smhg-text-color);
	text-align: center;
	transform: translate(-50%, -50%);
}

.smhg-heading {
	margin: 0 0 20px;
	padding: 0;
	color: inherit;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(64px, 8vw, 140px);
	font-style: normal;
	font-weight: 400;
	line-height: 0.84;
	letter-spacing: -0.045em;
	overflow-wrap: anywhere;
	text-transform: uppercase;
}

.smhg-description {
	margin: 3px 0 0;
	padding: 0;
	color: inherit;
	font-family: inherit;
	font-size: clamp(16px, 1.4vw, 20px);
	font-style: normal;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0.02em;
	overflow-wrap: anywhere;
}

@media (max-width: 900px) {
	.smhg-root {
		height: auto;
	}

	.smhg-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: repeat(4, auto);
		height: auto;
	}

	.smhg-item {
		aspect-ratio: 4 / 3;
	}

	.smhg-heading {
		font-size: clamp(48px, 10vw, 88px);
	}
}

@media (max-width: 767px) {
	.smhg-item {
		aspect-ratio: 4 / 5;
	}

	.smhg-content {
		width: 100%;
		padding: 20px 14px;
	}

	.smhg-heading {
		margin-bottom: 16px;
		font-size: clamp(40px, 12vw, 72px);
		line-height: 0.9;
		letter-spacing: -0.035em;
	}

	.smhg-description {
		font-size: clamp(14px, 4vw, 16px);
	}
}

