/*
	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 .slide .details {
	--icon-color: var(--dark-orange);
	--font-family: var(--font-display-futura);
}

.core-slider .slide .slide-title {
	color: #373737;
}

.core-slider .slide .description {
	font-family: var(--font-body);
	color: var(--gray);
	font-weight: normal;
}

.core-slider:not([data-width="full"]) {
	max-width: var(--width-feature);
}

.core-slider[data-content-overlaps="true"] .arrow-cont .custom-arrow.prev {
	transform: translate(50%, -50%);
}

.core-slider[data-content-overlaps="true"] .arrow-cont .custom-arrow.next {
	transform: translate(-50%, -50%);
}

@media (min-width: 64em) {
	.core-slider[data-content-overlaps="true"] .arrow-cont .custom-arrow.prev,
	.core-slider[data-content-overlaps="true"] .arrow-cont .custom-arrow.next {
		transform: translateY(-100%);
	}
}

@media (hover: hover) {
	.core-slider .slide .slide-footer .read-more:hover {
		color: var(--dark-orange);
	}

	.core-slider .slide .slide-title > a:hover {
		color: #373737;
	}
}