.content-text {
	font-size: 16px;
	line-height: 1.5rem;
	margin-bottom: 1rem;
}

/* Nested Content Page */
.link-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	margin-bottom: 1rem;
}

.link-grid-wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.link-grid-wrapper:hover {
	color: #fff;
	text-decoration: underline;
}

.link-grid-label {
	background: #004996;
	color: #fff;
	height: 100%;
	padding: 0.5rem;
}

@media screen and (min-width: 768px) {
	.link-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (min-width: 1139px) {
	.link-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}