/*
	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 .slides {
	max-width: var(--width-feature);
}

.core-cards .slide .slide-title {
	font-family: var(--font-display-futura);
	color: #373737;
	font-size: 20px;
	line-height: 39px;
	font-weight: 600;
}

.core-cards .slide p {
	display: inline;
	font-family: var(--font-display);
	color: var(--gray);
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
}

.core-cards .slide .img-cont {
	margin-bottom: var(--space-2);
}

.core-cards .slide .content-section > .inner {
	gap: var(--space-2);
}

.core-cards .slide .content-section {
	gap: 0;
}

.core-cards .slide .img-cont .mini-date-section {
	background-color: white;
	color: #373737;
    left: initial;
    right: 10px;
    top: 10px;
}

.core-cards.ccl-widget .slide .slide-footer,
.core-cards.ccl-widget .slide .slide-footer a {
	display: inline;
}

.core-cards .slide .content-section > .inner {
	display: block;
}

.core-cards .slide .details {
	margin-bottom: var(--space-3);
}

@media (min-width: 64em) {
	.core-cards {
		margin-bottom: var(--space-24);
	}
	
	.core-cards .slides {
		gap: var(--space-10);
	}

	.core-cards .slide .slide-title {
		font-size: 24px;
		line-height: 43px;
	}
	
	.core-cards .slide p {
		font-size: 19px;
		line-height: 29px;
	}
}

@media (hover: hover) {
	.cards-3-across.core-cards .slide .slide-title:hover {
		color: var(--black);
	}

	.core-cards .slide .slide-title > a:hover {
		color: inherit;
	}
}