<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
	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 .widget-header-inner {
	padding-bottom: unset;
	border-bottom: unset;
}

.core-slider .widget-title { 
	font-family: var(--font-display);
	font-weight: 500;
	color: var(--text-black);
	text-align: left;
	margin-right: unset;
}

.core-slider .img-cont::after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
	pointer-events: none;
}

.core-slider .slide .blog-feed-header .publish-date { display: none; }

.core-slider .slide .slide-title {
	font-family: var(--font-display);
	font-weight: 500;
	color: var(--text-black);
}

.core-slider .slide p {
	font-size: var(--text-lg);
	line-height: var(--leading-tight);
}

.core-slider .slide .details li .icon {
	color: var(--dark-pink);
}

@media (min-width: 64em) {
	.core-slider .slide.overlap-image-desktop .content-section {
		position: absolute;
		z-index: 2;
		left: 0;
		bottom: 0;
		padding: var(--space-4) var(--space-16);
		width: 100%;
		max-width: var(--width-comfortable);
	}
}
</pre></body></html>