.pointer-list {
	list-style: none;
	padding: 0;
}

.pointer-list:last-child {
	margin-bottom: 0;
}

.pointer-list li {
	font-family: var(--serif-font-family);
	position: relative;
	margin-bottom: .5rem;
	display: flex;
	align-items: center;
}

.pointer-list li:last-child {
	margin-bottom: 0;
}

.pointer-list li::before {
	content: '';
	position: relative;
	background-image: url('../../../images/icons/lucide-chevron-right--brand-light.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 1.25rem;
	height: 1.5rem;
	width: 1.5rem;
	margin-right: .25rem;
}

.pointer-list li:has(a[href$=".pdf"])::before {
	background-image: url('../../../images/icons/lucide-file-text--brand-light.svg');
}

.pointer-list li a {
	text-decoration: none;
	font-weight: 500;
}

.view-intro .pointer-list li::before {
	background-image: url('../../../images/icons/lucide-chevron-right--brand-white.svg');}