/*
	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 .slide .inner .slide-title {
	color: #333333;
	font-size: var(--text-lg);
	font-family: var(--font-display);
}

.core-cards .slide .inner .slide-title:hover > a {
	color: inherit;
}

.ccl-widget.core-cards .slide .img-cont {
	margin-bottom: var(--space-2);
}

.core-cards .slide .inner .content-section p {
	font-size: var(--text-base);
	font-family: var(--font-body);
	color: var(--black);
	line-height: var(--leading-relaxed);
	font-weight: var(--font-weight-light);
	letter-spacing: var(--tracking-wide);
}

.core-cards .slide .inner .content-section > .inner {
	gap: var(--space-2);
}

.ccl-widget.core-cards .slides {
	gap: var(--space-4);
	padding: 0 15px;
}

.ccl-widget.core-cards {
	margin-bottom: var(--space-8);
	padding-top: var(--space-4);
	display: flex;
	flex-direction: row;
}

.core-cards svg {
	display: none;
}

.core-cards .slide .sponsored {
	font-size: var(--text-base);
	font-family: var(--font-body);
	color: #747474;
	line-height: var(--leading-normal);
	font-weight: var(--font-weight-light);
	font-style: italic;
}

.ccl-widget.core-cards .slide .slide-footer .qv-btn {
	font-size: .93em;
	font-family: var(--font-body);
	color: rgb(51, 51, 51);
	line-height: 2.067;
	font-weight: var(--font-weight-light);  
	margin-top: 0;
	margin-bottom: var(--space-4);
}

.ccl-widget.core-cards .slide .slide-top {
	padding-bottom: var(--space-2);
}

@media(min-width: 40em) {
	.core-cards .slide .inner .slide-title {
		font-size: var(--text-xl);
	}

	.core-cards .slide .sponsored {
		font-size: 1.063rem;
	}
}

@media(min-width: 80em) {
	.core-cards svg {
		display: block;
		width: 2.75rem;
		height: 31.3rem;
		position: relative;
		bottom: var(--space-12);
	}

	.core-cards .slide .img-cont img {
		width: 580px;
		object-fit: cover;
	}

	.core-cards .slide .inner .content-section > .inner {
		gap: var(--space-2);
	}

	.ccl-widget.core-cards .slides {
		gap: var(--space-8);
	}
}

