/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Slider 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-slider {
	--font-title: var(--font-display-agenda);
	--font-desc: var(--font-body);
	--color-display: var(--gray);
	--color-display-hover: var(--gray);
	--color-body: var(--gray);
	--color-body-alt: #fff;
	--color-accent: var(--primary-color-800);
}

.core-slider[data-width="controlled"] {
	max-width: calc(var(--width-base) + var(--space-10));
}

.core-slider[data-width="controlled"] .arrow-cont {
	padding: 0 var(--space-3);
}

.core-slider[data-width="controlled"] .slide {
	padding: 0;
}

.core-slider .mini-date-section {
	left: auto;
	right: 0;
	z-index: 2;
}

.core-slider .slide .content-section > .inner {
	gap: var(--space-4);
}

.core-slider .slide .slide-title {
	font-family: var(--font-display-agenda);
}

.core-slider .slide .description {
	font-size: var(--text-base);
	font-weight: 400;
	line-height: var(--leading-snug);
}

.core-slider .slide .slide-footer {
	--font-family: var(--font-title);
}

.core-slider .slide .slide-footer a {
	font-weight: 600;
}

@media (hover: hover) {
	.core-slider .slide.overlap-image .slide-title > a:hover {
		text-decoration: none;
	}

	.core-slider .slide .slide-footer .read-more:hover {
		color: #fff;
	}
}

@media (min-width: 64em) {
	.core-slider[data-width="controlled"] .arrow-cont {
		padding: 0 var(--space-5);
	}
	
	.core-slider .slide .content-section {
		gap: var(--space-7);
	}

	.core-slider .slide .description {
		font-size: var(--text-lg);
	}

	.core-slider .blog-feed-header {
		--text-color: #fff;
		--accent-color: #fff;
	}
}