/*
	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-title {
	font-weight: 700;
	line-height: var(--leading-tight);
	font-size: var(--title-text-size);
}

.core-hero-slideshow .slide p {
	color: var(--text-color);
	font-size: var(--text-size);
	font-weight: normal;
	line-height: var(--leading-normal);
}

.ccl-widget.core-hero-slideshow .slide .content-section {
	bottom: 0;
	padding: 15px 16px;
	max-width: 530px;
}

.ccl-widget.core-hero-slideshow .slide .slide-title a,
.ccl-widget.core-hero-slideshow .slide .slide-title {
	font-size: 30px;
	line-height: 38px;
	letter-spacing: 0.015em;
	text-decoration: none;
	margin-bottom: var(--space-1);
}

@media (hover: hover) {
	.ccl-widget.core-hero-slideshow .slide .slide-title a:hover {
		text-decoration: none;
	}
}

.ccl-widget.core-hero-slideshow .slide p {
	font-size: 16px;
	line-height: 21px;
	padding-bottom: 28px;
}

.ccl-widget.core-hero-slideshow .slide .read-more {
	width: max-content;
	border-radius: 0;
	padding: 0;
	background: none;
	color: #fff;
	font-size: 16px;
	letter-spacing: 0.01em;
	font-family: var(--font-display);
}

.ccl-widget.core-hero-slideshow .slide .read-more i {
	margin-left: 5px;
}

.ccl-widget.core-hero-slideshow .arrows-cont .glide__arrows {
	left: auto;
	right: 15px;
	bottom: 21px;
	padding: 0;
	gap: 17px;
}

.ccl-widget.core-hero-slideshow .arrows-cont .glide__arrows .glide__arrow {
	width: 35px;
	height: 35px;
	background: none;
	box-shadow: none;
	border: 2px solid #fff;
	color: #fff;
	font-size: 23px;
}

@media (min-width: 64em) {
	.ccl-widget.core-hero-slideshow .slide .slide-title a, .ccl-widget.core-hero-slideshow .slide .slide-title {
		font-size: 40px;
		line-height: 48px;
		letter-spacing: 0.025em;
		width: 100%;
		margin-bottom: 6px;
	}

	.ccl-widget.core-hero-slideshow .slide p {
		line-height: 23px;
		padding-bottom: 7px;
	}

	.ccl-widget.core-hero-slideshow .slide .content-section {
		padding-bottom: 53px;
		left: 51px;
	}

	.ccl-widget.core-hero-slideshow .arrows-cont .glide__arrows {
		right: 68px;
		bottom: 55px;
		gap: 35px;
	}

	.ccl-widget.core-hero-slideshow .arrows-cont .glide__arrows .glide__arrow {
		font-size: 32px;
		width: 46px;
		height: 46px;
	}
}