/**
* Component: Stats with Images
*
* Styles for the Stats with Images component.
*
* @package Point_Hope
*/
.stats-with-images {
	position: relative;
}
.stats-with-images.overlap-hero {
	margin-top: -100px;
	position: relative;
	z-index: 10;
}
.stats-with-images-card {
	background-color: #ffffff;
	border: 1px solid #dbdbdd;
	padding: 40px 40px 80px;
	display: flex;
	flex-direction: column;
	gap: 60px;
	align-items: center;
}
.stats-with-images .stats-heading {
	text-align: center;
	margin: 0;
}
.stats-row {
	display: flex;
	gap: 41px;
	width: 100%;
	align-items: flex-start;
}
.stat-col {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	text-align: center;
}
.stat-image {
	height: 180px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.stat-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}
.stat-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.stat-number {
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 60px;
	line-height: normal;
	color: var(--color-palm);
	text-transform: uppercase;
	margin-bottom: 0;
}
.stat-text {
	font-family: 'Le Monde Journal Std', serif;
	font-style: italic;
	font-size: 24px;
	line-height: 1.2;
	color: var(--color-deep-forest);
}
.stat-text strong {
	font-weight: 700;
}
@media(max-width:1199px) {
	.stats-row {
		gap: 30px;
	}
	.stat-number {
		font-size: 48px;
	}
	.stat-text {
		font-size: 20px;
	}
}
@media(max-width:992px) {
	.stats-with-images.overlap-hero {
		margin-top: -60px;
	}
	.stats-with-images-card {
		padding: 30px 20px 50px;
		gap: 32px;
	}
	.stats-row {
		flex-direction: column;
		gap: 40px;
		align-items: center;
	}
	.stat-col {
		max-width: 420px;
		width: 100%;
		margin: 0 auto;
	}
	.stat-image {
		height: 140px;
	}
	.stat-number {
		font-size: 44px;
	}
	.stat-text {
		font-size: 18px;
	}
}

@media(max-width:640px) {
	.stats-with-images-card {
		padding: 24px 16px 40px;
	}
	.stats-row {
		gap: 32px;
	}
	.stat-image {
		height: 120px;
	}
	.stat-number {
		font-size: 38px;
	}
	.stat-text {
		font-size: 16px;
		line-height: 1.4;
	}
	.stat-col {
		max-width: 360px;
	}
}
