/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Cards 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-cards {
	margin-bottom: var(--widget-margin-bottom);
	padding-top: var(--widget-padding-top);
}

.core-cards .slide .slide-title, .core-cards .slide .slide-title a {
	font-size: var(--text-2xl);
	font-family: var(--font-display) ;
	color: var(--dark-purple);
}

.core-cards .slide p {
	font-size: var(--text-lg);
	line-height: var(--leading-tight);
	font-family: var(--font-body);
	font-weight: 500;
	color: var(--black);
}


.core-cards .slide .details {
	display: none;
}

.core-cards .slide .slide-footer {
	margin: 0;
}

.core-cards .slide .slide-footer a.read-more{
	color: var(--teal);
	background-color: transparent;
	font-weight: 600;
	padding: var(--space-1) 0;
	font-size: 17px;
	margin: 0px -10px 0px 0px;
	font-family: var(--font-display);
}

.core-cards .fas.fa-arrow-right {
	color: var(--teal);
}

@media (hover: hover){
	.ccl-widget.core-cards .slide a.read-more:not(p *):hover, .ccl-widget.core-cards .slide .slide-footer a:hover {
		background-color: transparent;
	}

	.ccl-widget.core-cards .slide .slide-title:hover,
	.ccl-widget.core-cards .slide .slide-title > a:hover {
		color: var(--dark-purple);
	}
}