
.points > .point:not( :first-child ) {
	margin-top: var( --space-min );
}

.points .point {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.points img {
	max-width: 3.2rem;
}

@media ( min-width: 640px ) {
	.points {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-gap: var( --space-min );
	}
	.points > .point:not( :first-child ) {
		margin-top: 0;
	}
}
