/*
	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-title {
	font-family: var(--font-display-2);
	font-weight: var(--font-weight-heavy);
	color: var(--powder-blue);
	text-transform: uppercase;
}

.core-slider .arrow-cont {
	top: 50%;
	left: -10px;
	right: -10px;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: auto;
	height: auto;
}

.core-slider[data-content-overlaps="true"] .arrow-cont .custom-arrow.prev,
.core-slider[data-content-overlaps="true"] .arrow-cont .custom-arrow.next {
	transform: none;
}

.ccl-widget .arrow-cont .custom-arrow,
.ccl-widget .arrow-cont .custom-arrow.prev,
.ccl-widget .arrow-cont .custom-arrow.next {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	transform: none;
}

.ccl-widget .arrow-cont .custom-arrow {
	flex-shrink: 0;
	box-shadow: none;
	background-color: var(--blue);
	color: var(--white);
	transition: background-color var(--transition-appendix);
}

.ccl-widget .arrow-cont .custom-arrow:focus {
	outline: none;
}

.core-slider .slide {
	overflow: hidden;
}

.core-slider .slide .slide-top {
	position: relative;
	z-index: 1;
	display: block;
}

.core-slider .slide .img-cont > a,
.core-slider .slide .slide-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.core-slider .slide .slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.core-slider .slide.overlap-image .img-cont::after {
	background: rgba(0,0,0,.2);
}

.core-slider .slide .content-section {
	z-index: 2;
	padding: var(--space-5);
	pointer-events: none;
}

.core-slider .slide .content-section a {
	pointer-events: all;
}

.core-slider .slide .date-title,
.core-slider .slide .slide-title {
	display: block;
	color: inherit;
	line-height: var(--leading-none);
	transition: font-size var(--transition-appendix), margin-bottom var(--transition-appendix);
}

.core-slider .slide .content-section .date-title {
	font-family: var(--font-display-2);
	font-size: 1.625rem;
	text-transform: uppercase;
	letter-spacing: .02rem;
}

.core-slider .slide .slide-title {
	font-family: var(--font-body);
	font-weight: var(--font-weight-bold);
	font-size: var(--text-lg);
}

.core-slider .slide .slide-title a {
	font: inherit;
	text-transform: inherit !important;
	color: inherit !important;
	line-height: inherit;
	text-decoration: none !important;
}

.core-slider .slide .slide-desc {
	display: none;
	font-family: var(--font-body);
	font-weight: var(--font-weight-normal);
	font-size: var(--text-sm);
}

.core-slider .slide .read-more {
	display: none;
}

@media (hover: hover) {
	.ccl-widget .arrow-cont .custom-arrow:hover {
		background-color: var(--light-teal);
	}
}

@media (min-width: 40em) {
	.core-slider[data-multi-slides="true"] .slide {
		padding: 0;
	}
}

@media (min-width: 64em) {
	.core-slider .dots-cont {
		position: absolute;
		left: 50%;
		bottom: 20px;
		transform: translateX(-50%);
		z-index: 10;
		padding: var(--space-1) 11px;
	}

	.core-slider .slick-dots {
		justify-content: flex-start;
	}

	.core-slider .slick-dots li button {
		border-color: var(--white);
	}
	
	.core-slider .slick-dots li.slick-active button {
		background-color: var(--white);
	}

	.ccl-widget .arrow-cont .custom-arrow {
		width: 46px;
		height: 46px;
		font-size: var(--text-2xl);
	}
}

@media (min-width: 90em) {
	.core-slider .dots-cont {
		bottom: var(--space-12);
	}
	
	.core-slider .widget-title {
		font-size: 5.5rem;
	}
	
	.core-slider .arrow-cont {
		left: -23px;
		right: -23px;
	}
	
	.core-slider .slide .slide-title {
		font-size: 1.3125rem;
	}
	
	.core-slider .slide .slide-desc {
		font-size: var(--text-xl);
	}
}