/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Header Slideshow 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-hero-slideshow-primary {
	--text-container-width: var(--width-comfortable);
	--letter-spacing: var(--tracking-wide);
	--title-text-size: 35px;
	--btn-text-size: var(--text-base);
	--text-size: 17px;

	color: var(--white);
	position: relative;
}

.core-hero-slideshow-primary .slide .img-cont::after {
	content: "";
	background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
	bottom: 0;
	left: 0;
	position: absolute;
	pointer-events: none;
	height: 256px;
	width: 100%;
}

.core-hero-slideshow-primary .slide .slide-title {
	margin-bottom: 0;
	font-family: var(--solano);
	text-transform: none;
	font-weight: var(--font-weight-bold);
	line-height: calc(30/35);
	font-size: var(--title-text-size);
	color: inherit;
	letter-spacing: 0;
	filter: drop-shadow(0 0 5px rgba(0,0,0,.15))
}

.core-hero-slideshow-primary .slide .slide-title a {
	pointer-events: all;
}

.core-hero-slideshow-primary .slide p {
	font-size: var(--text-size);
	font-weight: var(--font-weight-demi);
	line-height: calc(21/17);
	color: inherit;
	letter-spacing: 0;
}

.core-hero-slideshow-primary .glide__slides .slide a.read-more:not(p *) {
	pointer-events: all;
	padding: 0;
	display: block;
	text-align: left;
	background-color: transparent;
	color: inherit;
}

.core-hero-slideshow-primary .slide a.read-more:after {
	content: '\f061';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 12px;
	margin-left: 3px;
	display: inline-block;
	transform: translateY(-1px);
}

.core-hero-slideshow-primary .arrows-cont .glide__arrows {
	gap: 10px;
	left: 0;
}

.core-hero-slideshow-primary .arrows-cont .glide__arrow {
	--arrow-color: var(--white);
	--arrow-bg-color: transparent;
	margin: 0;
}

.core-hero-slideshow-primary .shared-play-button {
	--color: var(--white);
	filter: drop-shadow(0 0 5px rgba(0,0,0,.6));
	left: unset;
	top: 62px;
	right: 7px;
	transform: unset;
}

@media (hover: hover) {
	.core-hero-slideshow-primary .slide.overlap-image .slide-title a:hover {
		text-decoration: none;
	}

	.core-hero-slideshow-primary .glide__slides .slide a.read-more:not(p *):hover {
		background-color: transparent;
		color: inherit;
	}
}

@media (min-width: 40em) {
	.core-hero-slideshow-primary .arrows-cont .glide__arrows {
		display: flex;
	}
}

@media (min-width: 64em) {
	.core-hero-slideshow-primary {
		--title-text-size: 41px;
	}

	.core-hero-slideshow-primary .slide .img-cont::after {
		height: 283px;
	}

	.core-hero-slideshow-primary .slide-title {
		line-height: calc(30/41);
	}

	.core-hero-slideshow-primary .slide p {
		line-height: calc(26/17);
	}

	.core-hero-slideshow-primary .slide a.read-more {
		margin-top: 8px;
	}

	.core-hero-slideshow-primary .arrows-cont .glide__arrows {
		padding-inline: 31px;
		display: flex;
	}

	.core-hero-slideshow-primary .shared-play-button {
		left: 50%;
		top: 50%;
		right: unset;
		transform: translate(-50%, -50%);
	}
}