/*
	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.
*/
.ccl-v2-widget.core-v2-hero-slideshow .slide-img,
.ccl-v2-widget.core-v2-hero-slideshow .img-cont {
	border-radius: 0;
}
.core-v2-hero-slideshow .img-cont::before {
	display: block;
	background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
}

.core-v2-hero-slideshow.hide-content .img-cont::before {
	display: none;
}

.core-v2-hero-slideshow {
	--content-gap: 10px;
	& .content-section {
		gap: var(--content-gap);
		display: flex;
		flex-direction: column;
		padding-bottom: 80px;
		& .content-upper {
			display: contents;
		}
		& .slide-title {
			font-weight: var(--font-weight-extrabold);
			line-height: 1.2;
			font-size: var(--text-2xl);
		}
		& .slide-desc {
			font-size: var(--text-base);
			font-weight: normal;
			line-height: var(--leading-normal);
		}
		& .slide-footer .read-more {
			height: 26px;
			background-color: transparent;
			color: var(--white);
			padding: 0;
			border: none;
			line-height: var(--leading-normal);
			font-size: var(--text-base);
			&:hover {
				background-color: transparent;
				color: var(--green);
			}
			&::after {
				vertical-align: top;
				margin-left: var(--space-2);
				content: "\f105";
				font-family: "Font Awesome 6 Pro";
				color: var(--green);
				font-size: var(--text-lg);
			}
		}
	}
	& .glide__arrows {
		gap: 10px;
	}
}

@media (min-width: 64rem) {
	
	.core-v2-hero-slideshow {
		--content-gap: var(--space-3);
		& .content-section {
			padding: var(--space-10);	
		}
	}
}