section.section-statistics {
	padding: 6rem;
}

div.statistics-container {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1fr;
	justify-content: center;
	margin: 3rem 0;
}

div.stat {
	border: solid 0px var(--color-white);
	display: inline-block;
	margin: 1rem 0;
}

div.stat .stat-primary {
	font-size: 6rem;
	line-height: 0.875rem;
	letter-spacing: -3px;
}

div.stat .stat-secondary {
	font-size: 3rem;
	color: var(--color-petrol-30);
	letter-spacing: -1px;
}

div.stat .stat-byline {
	font-size: var(--16px);
	color: var(--color-petrol-30);
	margin: 1rem 0 0 0;
	max-width: 75%;
}

@media only screen and (max-width: 768px) {
	div.stat {
		width: 100%;
		height: auto;
		text-align: center;
	}
	
	div.stat:not( :has(p)) {
		height: 0;
	}
	
	div.stat::has(p) {
		height: auto;
	}
	
	div.stat .stat-byline {
		max-width: 100%;
	}
}

@media only screen and (min-width: 768px) {
	div.statistics-container {
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (min-width: 1201px) {
	div.statistics-container {
		grid-template-columns: 1fr 1fr 1fr;
	}
}