/*
	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 {
	--text-container-width: var(--width-comfortable);
	--letter-spacing: var(--tracking-wide);
	--title-text-size: var(--text-2xl);
	--btn-text-size: var(--text-base);
	--text-size: var(--text-base);

	position: relative;
}

.core-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 .slide .shared-play-button {
	top: 20px;
	right: 20px;
	left: auto;
	transform: none;
}

.core-hero-slideshow .slide .content-section {
	padding: 0 15px;
	bottom: 87px;
}

.core-hero-slideshow .slide .slide-title {
	font-family: var(--font-zilla);
	font-weight: 500;
	line-height: calc(28/24);
	font-size: 1.5rem;
	margin-block-end: 2px;
}

.core-hero-slideshow .slide p {
	color: var(--text-color);
	font-size: 1.125rem;
	font-weight: normal;
	line-height: 1.2;
	padding-bottom: 0;
}

.core-hero-slideshow .slide .slide-footer {
	bottom: 48px;
}

.core-hero-slideshow .slide .slide-footer .read-more {
	margin-inline-start: 15px;
	padding: 0;
	color: var(--gray-100);
}


.core-hero-slideshow .arrows-cont .glide__arrows {
	left: auto;
	right: 0;
	padding-inline: 15px;
	gap: 16px;
}

.core-hero-slideshow .arrows-cont .glide__arrows .glide__arrow {
	color: var(--gray-100);
	border-color: var(--gray-100);
	border-width: 3px;
	height: 48px;
	width: 48px;
	font-size: 1.5rem;
}

@media (hover: hover) {
	.core-hero-slideshow .slide .slide-footer .read-more:hover {
		color: var(--blue-13);
	}
	.core-hero-slideshow .arrows-cont .glide__arrows .glide__arrow:hover {
		background-color: var(--blue-13);
		border-color: var(--blue-13);
	}
}

.core-hero-slideshow .arrows-cont .glide__arrows .glide__arrow i {
	height: 21px;
	width: 25px;
}

.core-hero-slideshow .arrows-cont .glide__arrows .glide__arrow.glide__arrow--left i::before {
	content: "";
	background-image: url(/includes/public/assets/shared/arrow-left.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
	height: 100%;
	width: 100%;
	display: block;
}

.core-hero-slideshow .arrows-cont .glide__arrows .glide__arrow.glide__arrow--right i::before {
	content: "";
	background-image: url(/includes/public/assets/shared/arrow-right.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
	height: 100%;
	width: 100%;
	display: block;
}

@media screen and (min-width: 40em) {
	.core-hero-slideshow .slide .content-section {
		left: 0; 
	}


}

@media screen and (min-width: 64em) {
	.core-hero-slideshow .slide .shared-play-button {
		top: 150px;
		right: 20px;
	}
}

@media screen and (min-width: 90em) {
	.core-hero-slideshow .slide .content-section {
		padding: 0 48px; 
		bottom: 68px;
	}

	.core-hero-slideshow .slide .slide-title {
		font-size: 1.75rem;
		line-height: 1;
	}

	.core-hero-slideshow .slide .content-section p {
		font-size: 1.125rem;
		line-height: calc(22/18);
	}

	.core-hero-slideshow .arrows-cont .glide__arrows {
		right: 30px;
	}

	.core-hero-slideshow .slide .slide-footer {
		bottom: 34px;
	}

	.core-hero-slideshow .slide .slide-footer .read-more {
		margin-inline-start: 48px;
	}
}