/* Specs Metrics Grid */
.smg {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: rgba(245, 240, 232, 0.06);
}

.smg-card {
	background: #0B0B0E;
	display: flex;
	flex-direction: column;
}

.smg-img {
	position: relative;
	aspect-ratio: 16 / 9;
	background-color: #111116;
	overflow: hidden;
}

.smg-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.smg-img-caption {
	position: absolute;
	left: 12px;
	bottom: 12px;
	right: 12px;
	font-family: Inter, sans-serif;
	font-size: 8px;
	letter-spacing: 0.15em;
	color: rgba(201, 169, 110, 0.2);
	text-transform: uppercase;
	pointer-events: none;
}

.smg-body {
	padding: 32px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.smg-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 16px;
}

.smg-eyebrow {
	font-family: Inter, sans-serif;
	font-size: 8px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(245, 240, 232, 0.35);
	margin: 0;
}

.smg-value {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	color: #C9A96E;
	margin: 0;
	white-space: nowrap;
}

.smg-statement {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	color: #F5F0E8;
	font-style: italic;
	margin: 0 0 12px;
	line-height: 1.3;
}

.smg-text {
	font-family: Inter, sans-serif;
	font-size: 12px;
	color: rgba(245, 240, 232, 0.38);
	margin: 0;
	line-height: 1.7;
}

@media (max-width: 767px) {
	.smg {
		grid-template-columns: 1fr;
	}
	.smg-body {
		padding: 22px;
	}
	.smg-statement {
		font-size: 19px;
	}
}
