/**
* Component: Impact Stats
*
* Styles for the Impact Stats component.
*
* @package Point_Hope
*/
h2.impact-stats-heading {
	text-align: center;
	margin-bottom: 30px;
}
.impact-stats-row {
	display: flex;
	gap: 41px;
	align-items: stretch;
}

.impact-stats-text-col {
	flex: 0 0 220px;
	max-width: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(170, 204, 229, 0.25);
	padding: 40px;
}

.impact-stats-text-content,
.impact-stats-text-content p {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 24px;
	line-height: 1.3;
	color: var(--color-hunter);
	font-weight: lighter;
}
.impact-stats-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
}
.impact-stat-image {
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.impact-stat-image img {
	max-height: 180px;
	width: auto;
	height: 100%;
	object-fit: contain;
}
.impact-stat-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
}
.impact-stat-number {
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 60px;
	line-height: normal;
	color: var(--color-palm);
	text-transform: uppercase;
}
.impact-stat-label {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 24px;
	line-height: normal;
	color: var(--color-hunter);
}
@media(max-width:1199px) {
	.impact-stats-row {
		gap: 30px;
	}
	.impact-stats-text-content {
		font-size: 20px;
	}
	.impact-stat-number {
		font-size: 48px;
	}
	.impact-stat-label {
		font-size: 20px;
	}
}
@media(max-width:992px) {
	.impact-stats-row {
		flex-direction: column;
		gap: 40px;
	}
	.impact-stats-text-col {
		flex: 1;
		max-width: none;
		padding: 30px 20px;
	}
	.impact-stats-text-content,
	.impact-stats-text-content p {
		font-size: 18px;
		line-height: 1.6;
	}
	.impact-stat-image {
		height: 150px;
	}
	.impact-stat-image img {
		max-height: 150px;
	}
	.impact-stat-number {
		font-size: 40px;
	}
	.impact-stat-label {
		font-size: 18px;
	}
}
