/*
	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 {
	position: relative;
	color: var(--white);
	margin-bottom: var(--space-10);
}

.core-hero-slideshow .arrows-cont .glide__arrows {
	left: auto;
	right: 0;
	gap: 8px;
}

.core-hero-slideshow .arrows-cont .glide__arrow {
	--arrow-bg-color: var(--white);
	--arrow-color: var(--green);
	--arrow-bg-color-hover: var(--white);
}

.core-hero-slideshow .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: 60%;
	width: 100%;
}

.core-hero-slideshow .slide .content-section,
.core-hero-slideshow .slide .slide-footer {
	display: block;
}

.core-hero-slideshow .slide .content-section {
	bottom: 64px;
}

.core-hero-slideshow .slide .slide-title {
	margin-bottom: 8px;
	font-family: var(--font-display);
	font-weight: bold;
	font-size: 1.625rem;
	line-height: calc(31 / 26);
	color: inherit;
}

.core-hero-slideshow .slide .content-section .description {
	padding: 0;
	font-family: var(--font-body);
	font-weight: normal;
	font-size: 1rem;
	line-height: 1.5;
	color: inherit;
}

.core-hero-slideshow .slide .slide-footer {
	bottom: 36px;
	padding: 0 20px;
}

.core-hero-slideshow .slide .slide-footer .read-more {
	padding: 0;
	margin: 0;
	color: var(--white);
}

.core-hero-slideshow .slide .shared-play-button {
	inset: 20px 20px auto auto;
	transform: none;
}

@media (min-width: 40em) {
	.core-hero-slideshow .arrows-cont .glide__arrows {
		bottom: 38px;
		padding: 0 60px;
	}

	.core-hero-slideshow .slide .img-cont::after {
		height: 50%;
	}

	.core-hero-slideshow .slide .slide-title {
		font-size: 1.75rem;
	}

	.core-hero-slideshow .slide .content-section {
		left: 0;
		bottom: 80px;
		max-width: 714px;
		padding: 20px 60px;
	}

	.core-hero-slideshow .slide .content-section .description {
		font-size: var(--text-lg);
	}

	.core-hero-slideshow .slide .slide-footer {
		bottom: 30px;
		padding: 0 60px;
	}
}

@media (min-width: 64em) {
	.core-hero-slideshow .slide .content-section {
		bottom: 45px;
	}

	.core-hero-slideshow .slide .shared-play-button {
		inset: 60px 60px auto auto;
	}
}