/* section-climate-summary.css */

.section.climate-summary {
	width: 100%;
	max-width: var(--max-width);
	margin: 20px auto;
	padding: 0 var(--px);
	font-family: var(--ff-body);
}

.section.climate-summary .climate-summary-inner {
	background: var(--color-white);
	border-radius: var(--radius-xl);
	padding: 24px 28px;
}

.section.climate-summary h2 {
	font-family: var(--ff-head);
	font-size: 22px;
	font-weight: 400;
	color: var(--color-text);
	margin: 0 0 14px;
}

.section.climate-summary > .climate-summary-inner > p {
	font-size: 13.5px;
	line-height: 1.8;
	color: var(--color-text-muted);
	margin: 0 0 24px;
}

/* ── Stats grid ── */
.climate-stats-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 12px;
}

.climate-stat {
	background: var(--color-bg-soft);
	border-radius: var(--radius-md);
	padding: 16px 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	text-align: center;
}

.climate-stat-icon {
	font-size: 22px;
	line-height: 1;
}

.climate-stat-label {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--color-text-muted);
	font-weight: 500;
}

.climate-stat-value {
	font-size: 18px;
	font-weight: 500;
	color: var(--color-text);
	line-height: 1;
}

/* ── Responsive ── */
@media screen and (max-width: 992px) {
	.climate-stats-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 600px) {
	.section.climate-summary .climate-summary-inner {
		padding: 16px 16px;
	}

	.climate-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.section.climate-summary h2 {
		font-size: 18px;
	}
}
