/*
	README
	Modify this file as much or as little as needed.
	This file is shared across all CCL widgets in the List family. This enables the ability to
	a family of widgets in a single update without touching the structure of the widget and without needing
	to duplicate efforts across several widget-specific CSS files.
*/ 

.core-link-list {
	--color-title: var(--gray-700);
	--color-link: var(--sw-link-color, var(--primary-color-700));
	--text-size: var(--text-base);

	margin: 0 auto var(--widget-margin-bottom);
	padding: 0 var(--space-5);
	padding-top: var(--widget-padding-top);
}

.core-link-list .link-list-title {
	color: var(--color-title);
	font-size: var(--text-size);
	font-weight: 700;
	margin-bottom: var(--space-3);
}

.core-link-list ul li {
	list-style-type: disc; /*reboot.css override*/
}

.core-link-list .link-list-link {
	color: var(--color-link);
	font-size: var(--text-size);
}