/* 5-item grid */
/*
#stats-nothing    { grid-area: top0; }
#stats-records    { grid-area: top1; }
#stats-datasets   { grid-area: top2; }
#stats-species    { grid-area: bot1; }
#stats-citations  { grid-area: bot2; }
#stats-observers  { grid-area: bot3; }

.hero-stats-container {
	display: grid;
	grid-template-columns: auto !important;
	grid-template-areas:
		'top0 top1 top1 top2 top2 top2'
		'bot1 bot1 bot2 bot2 bot3 bot3';
	gap: 10px;
	padding: 10px;
}
*/

/* 6-item grid */
#stats-records    { grid-area: top1; }
#stats-datasets   { grid-area: top2; }
#stats-observers  { grid-area: top3; }
#stats-species    { grid-area: bot1; }
#stats-citations  { grid-area: bot2; }
#stats-images	  { grid-area: bot3; }

.hero-stats-container {
	display: grid;
	grid-template-columns: auto !important;
	grid-template-areas:
		'top1 top1 top2 top2 top3 top3'
		'bot1 bot1 bot2 bot2 bot3 bot3';
	gap: 10px;
	padding: 10px;
}