/*
	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(--space-10);
	padding-top: var(--widget-padding-top);
}

.core-cards .slide .slide-title {
	font-size: var(--text-2xl);
}

.core-cards .slide p {
	font-size: var(--text-lg);
	line-height: var(--leading-tight);
}

.ccl-widget.core-cards .slides {
	max-width: 1271px;
}
.ccl-widget.core-cards .slides .publish-date {
	display: none;
}

.ccl-widget.core-cards .slide .img-cont {
	margin-bottom: 0;
}

@media (min-width: 64em) {
	.ccl-widget.core-cards {
		padding-top: var(--space-3);
		margin-bottom: var(--space-32);
	}
	.ccl-widget.core-cards .slide {
		transition: transform ease-out 600ms;
	}
	@media (hover: hover) {
		.ccl-widget.core-cards .slide:hover {
			transform: translateY(-10px);
		}
	}
}
