.custom-link-list {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: var(--space-1) 10px;
	padding: 22px 0 0;
	margin: 0;
	list-style: none;
	font-family: var(--font-soft);
	font-weight: var(--font-weight-bold);
	font-size: var(--text-sm);
	line-height: normal;
	color: var(--red);
	border-top: 1px solid var(--gray-light);

	.list-item {
		font: inherit;
		color: inherit;
	}

	.link-item {
		font: inherit;
		text-decoration: none;
		color: inherit;
	}

	@media (hover: hover) {
		.link-item:hover .link-text {
			text-decoration: underline;
		}
	}
}

@media (min-width: 64em) {
	.contentRender_name_plugins_collections_template_custom_link_list {
		grid-area: links;
	}
}