/*
	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.hero-slideshow {
	--text-container-width: var(--width-comfortable);
	--letter-spacing: var(--tracking-wide);
	--title-text-size: var(--text-2xl-1);
	--btn-text-size: var(--text-base);
	--text-size: var(--text-lg);

	position: relative;
	border-bottom: 5px solid var(--blue-green);
}

.core-hero-slideshow.hero-slideshow .slide .img-cont::after {
	content: "";
	background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
	top: 0;
	left: 0;
	position: absolute;
	pointer-events: none;
	height: 100%;
	width: 100%;
}

.core-hero-slideshow.hero-slideshow.hide-content .slide .img-cont:after { content: none; }

.core-hero-slideshow.hero-slideshow .content-section {
	bottom: 70px;
	transform: translateY(10px);
	opacity: 0;
	transition: opacity .2s ease-in, transform .2s ease-in;
}

.core-hero-slideshow.hero-slideshow .slide.glide__slide--active .content-section {
	transform: translateY(0);
	opacity: 1;
}

.core-hero-slideshow.hero-slideshow .slide-title {
	font-weight: 700;
	line-height: var(--leading-tighter);
	font-size: 1.5625rem;
	text-transform: uppercase;
	width: 100%;
}

.core-hero-slideshow.hero-slideshow .slide p {
	color: var(--text-color);
	font-size: var(--text-size);
	font-weight: 700;
	line-height: var(--leading-normal);
	padding-bottom: unset;
}

.core-hero-slideshow.hero-slideshow .slide .slide-footer .read-more {
	display: none;
}

.core-hero-slideshow.hero-slideshow .arrows-cont .glide__arrows {
	gap: var(--space-2);
	bottom: var(--space-8);
} 

.core-hero-slideshow.hero-slideshow .glide__arrows .glide__arrow {
	background-color: rgba(255, 255,255, 0.2);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
	width: 40px;
	height: 40px;
	font-size: var(--text-base);

	transition: background .3s ease-in-out;
}
.core-hero-slideshow.hero-slideshow .glide__arrows .glide__arrow:focus {
	outline-offset: 0;
} 

@media (hover: hover) {
	.core-hero-slideshow.hero-slideshow .glide__arrows .glide__arrow:hover {
		background-color: var(--blue-green);
	}
}
.core-hero-slideshow.hero-slideshow .glide__arrows .glide__arrow.glide__arrow--left i::before {
	content: "\f060";
}
.core-hero-slideshow.hero-slideshow .glide__arrows .glide__arrow.glide__arrow--right i::before {
	content: "\f061";
}

@media (min-width: 64em) {
	.core-hero-slideshow.hero-slideshow .content-section {
		bottom: calc(80px + (120 - 80) * ((100vw - 1025px) / (1440 - 1025)));
		max-width: 620px;
		left: var(--space-6);
	}
	.core-hero-slideshow.hero-slideshow .slide-title {
		font-size: var(--text-4xl);
	}
	.core-hero-slideshow.hero-slideshow .slide p {
		font-size: var(--text-xl);
		line-height: var(--leading-snug);
	}
	.core-hero-slideshow.hero-slideshow .arrows-cont .glide__arrows {
		bottom: calc(35px + (52 - 35) * ((100vw - 1025px) / (1440 - 1025)));
	}
	.core-hero-slideshow.hero-slideshow .glide__arrows .glide__arrow {
		width: 50px;
		height: 50px;
		font-size: var(--text-lg);
	}
}

@media (min-width: 90em) {
	.core-hero-slideshow.hero-slideshow .content-section {
		bottom: 120px;
		max-width: 620px;
	}
	.core-hero-slideshow.hero-slideshow .arrows-cont .glide__arrows {
		bottom: 52px;
	}
}