/**
 * Stats Highlight styles - Figma Pixel Perfect
 * "Our Results" section
 *
 * @package NexioEducation
 */

.stats-highlight {
	background-color: #fffefa;
	padding: 120px 142px;
	min-height: 480px;
	overflow: hidden;
}

.stats-highlight-columns {
	display: flex;
	gap: 169px;
	align-items: center !important;
}

.stats-highlight-heading {
	flex: 0 0 auto !important;
	width: auto !important;
	max-width: fit-content;
	align-self: center !important;
}

.stats-highlight-title {
	font-family: var(--wp--preset--font-family--body, 'Manrope', sans-serif);
	font-size: 48px;
	font-weight: 800;
	line-height: 58px;
	color: var(--wp--preset--color--blue, #064d8e);
	margin: 0;
	white-space: nowrap;
}

.stat-item {
	text-align: left;
	display: flex;
	flex-direction: column;
	height: 240px;
	padding-bottom: 14px;
	box-sizing: border-box;
	align-self: flex-start !important;
}

.stat-value-group {
	display: flex;
	align-items: baseline;
	gap: 0;
	margin-bottom: auto;
	flex-wrap: nowrap;
}

.stat-number {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 144px;
	font-weight: 300;
	line-height: normal;
	color: var(--wp--preset--color--blue, #064d8e);
	margin: 0;
	white-space: nowrap;
}

.stat-symbol {
	font-family: 'Times New Roman', Times, serif;
	font-size: 64px;
	font-weight: 400;
	line-height: 1;
	color: var(--wp--preset--color--blue, #064d8e);
	margin: 0;
	margin-top: 94px;
	margin-left: 0;
	flex-shrink: 0;
}

.stat-description {
	font-family: var(--wp--preset--font-family--body, 'Manrope', sans-serif);
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
	color: #000000;
	margin: 0;
	max-width: 308px;
}

/* Responsive */
@media (max-width: 1200px) {
	.stats-highlight {
		padding: 80px 60px;
		min-height: auto;
	}

	.stats-highlight-columns {
		gap: 120px;
	}

	.stats-highlight-title {
		font-size: 36px;
		line-height: 44px;
	}

	.stat-number {
		font-size: 80px;
		line-height: normal;
	}

	.stat-symbol {
		font-size: 40px;
		line-height: 1;
		margin-top: 48px;
	}

	.stat-item {
		height: auto;
	}
}

@media (max-width: 900px) {
	.stats-highlight {
		padding: 60px 24px;
	}

	.stats-highlight-columns {
		flex-direction: column !important;
		gap: 48px !important;
		align-items: flex-start !important;
	}

	.stats-highlight-heading {
		width: 100% !important;
		flex: unset !important;
		max-width: 100% !important;
	}

	.stats-highlight-title {
		font-size: 32px;
		line-height: 40px;
		padding-bottom: 24px;
		border-bottom: 1px solid var(--wp--preset--color--blue, #064d8e);
		text-align: left;
		white-space: normal;
	}

	.stat-item {
		text-align: left;
		width: 100% !important;
		flex: unset !important;
	}

	.stat-number {
		font-size: 80px;
		line-height: normal;
	}

	.stat-symbol {
		font-size: 40px;
		line-height: 1;
		margin-top: 40px;
	}

	.stat-description {
		max-width: 100%;
	}
}
