/* main.css sizing only fits one headline fact per row on a phone, so the row
   became a long column once function spaces joined it. */
@media screen and (max-width: 48em) {

	.overview-icons .quick-info-item {
		margin-left: 4px;
		margin-right: 4px;
		max-width: 140px;
		min-width: 110px;
	}

}

/* Capacity figures, beneath the headline row. Flex rather than grid so a part
   filled last row centres instead of spreading across the full width. */
.overview-icons .capacity-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 8px;
	max-width: 700px;
	margin: 0 auto;
	padding-top: 26px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.overview-icons .capacity-item {
	flex: 0 1 90px;
	text-align: center;
}

.overview-icons .capacity-item p {
	margin: 0;
	font-size: 13px;
	line-height: 1.35;
}

/* Smaller than the headline icons, which .overview-icons svg sets to 38/48px. */
.overview-icons .capacity-item svg {
	width: 26px;
	height: 26px;
	margin-bottom: 6px;
}

@media screen and (min-width: 48.0625em) {

	.overview-icons .capacity-grid {
		gap: 24px 16px;
		max-width: 820px;
	}

	.overview-icons .capacity-item {
		flex: 0 1 110px;
	}

	.overview-icons .capacity-item p {
		font-size: 14px;
	}

	.overview-icons .capacity-item svg {
		width: 30px;
		height: 30px;
	}

}
