/*
	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 .sponsored {
	font-family: var(--font-display-semibold);
	font-weight: var(--font-display-semibold-weight);
	font-size: 10px;
	color: var(--black);
	line-height: var(--leading-none);
	letter-spacing: var(--tracking-widest);
	display: block;
	margin-bottom: var(--space-2);
}

.core-cards .slide .slide-title {
	font-family: var(--font-display-semibold);
	font-weight: var(--font-display-semibold-weight);
	color: var(--black);
}

.core-cards .slide .slide-title a,
.core-cards .slide .slide-footer a,
.core-cards .slide .details li a {
	transition: color ease 0.4s;
}

.core-cards .slide .slide-footer {
	margin: 0;
}

.core-cards .slide .slide-footer a {
	font-family: var(--font-display-semibold);
	font-weight: var(--font-display-semibold-weight);
	text-transform: uppercase;
	color: var(--black);
	background-color: transparent;
	padding: 0;
}

.core-cards .slide p {
	display: inline;
	font-weight: normal;
	color: var(--black);
}

.core-cards .slide .details li span,
.core-cards .slide .details li a {
	color: var(--black);
	font-family: var(--font-display);
}

.core-cards .slide .details li a {
	font-weight: normal;
}

.core-cards .slide .details li .icon {
	color: var(--aqua);
}

.core-cards .slide .img-cont {
	margin: 0;
}

@media (hover: hover) {
	.core-cards .slide .slide-title a:hover,
	.core-cards .slide .slide-footer a:hover,
	.core-cards .slide .details li a:hover {
		color: hsl(187, 46%, 51%);
		background-color: transparent;
		text-decoration: none;
	}
}