/*
	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-lg);
	--btn-text-size: var(--text-base);
	--text-size: var(--text-base);

	position: relative;
	opacity:1 !important;
}

/* .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 .slide-title {
	font-weight: 700;
	line-height: var(--leading-tight);
	font-size: var(--title-text-size);
	color: var(--text-color);
}

.core-hero-slideshow .slide p.description {
	color: var(--text-color);
	font-size: var(--text-size);
	font-weight: normal;
	line-height: var(--leading-normal);
}

.core-hero-slideshow .slide img  {
    background: #fff;
    border-radius: 0px 0px 100px 30px;
}

@media (min-width: 40em) {
	.core-hero-slideshow {
		--title-text-size: var(--text-2xl);
	}
}

@media (min-width: 64em) {
	.core-hero-slideshow .slide img  {
		border-radius: 0px 0px 189px 100px;
	}
}