/*
	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 .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 .glide__arrows .glide__arrow--left {
	background: url("/includes/public/assets/shared/arrow-l.svg");
	border-radius: 0px;
}

.core-slider .glide__arrows .glide__arrow--right {
	background: url("/includes/public/assets/shared/arrow-r.svg");
	border-radius: 0px;
}
.core-slider .glide__arrows .glide__arrow i {
	display: none;
}

.core-slider:not([data-width="full"]):not(.slider-1-across) .content-section {
	background: var(--orange-ec);
	padding: var(--space-5)
}

.core-slider:not([data-width="full"]):not(.slider-1-across) .content-section :is(a, li){
	color: #ffffff;
	font-weight: bold;
}

.core-slider:not([data-width="full"]):not(.slider-1-across) .slide .slide-title > a,
.core-slider:not([data-width="full"]):not(.slider-1-across) .slide p {
	color: var(--white);
}

.core-slider .slide a.read-more:not(p *), 
.core-slider .slide .slide-footer a {
    border: 0 solid var(--blue-4d);
    background-color: var(--blue-4d);
    color: var(--white);
    z-index: 1;
}

@media (hover: hover) {
	.core-slider .slide a.read-more:not(p *):hover,
	.core-slider .slide .slide-footer a:hover {
		border: 0 solid var(--blue-007);
		background-color: var(--blue-007);
		color: var(--white);
	}

	.core-slider .slide.overlap-image-desktop .slide-title > a:hover {
		text-decoration: none;
	}
}

@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);
	}
	.core-slider .slide.overlap-image-desktop .slide-title {
		font-size: var(--text-2xl);
		line-height: var(--leading-tight);
		color: var(--white);
	}
}

.core-slider .slide .slide-title {
	font-size: var(--text-2xl);
	line-height: var(--leading-tight);
}

.core-slider .slide p {
	font-size: var(--text-lg);
	line-height: var(--leading-tight);
}