/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Slider 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-image .img-cont:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 40%, transparent);
	pointer-events: none;
}


.hero-image {
	position: relative;
	border-bottom: 10px solid var(--red-a6);
}

.hero-image .shared-play-button {
	left: unset;
	top: 100px;
	right: -14px;
}

.hero-image .content-section {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.hero-image .content-section {
	text-align: center;
	width: 100%;
}

.hero-image .content-section .slide-title {
	max-width: 100%;
	margin-bottom: 12px;
	font-size: 1.0625rem;
	text-transform: uppercase;
	letter-spacing: var(--sw-letter-spacing-lg);
	font-weight: 700;
	line-height: 1;
}

.hero-image .content-section .slide-title a {
	pointer-events: all;
}

.hero-image .content-section p {
	font-family: var(--font-delight);
	font-size: 3.25rem;
	line-height: 1; 
	font-weight: 400;
}


.hero-image .content-section :is(.slide-title, p) {
	color: var(--white);
}


@media screen and (min-width: 375px) {
	.hero-image .content-section p {
		font-size: 3.75rem;
	}

	.hero-image .shared-play-button {
		top: 120px;
	}
}

@media screen and (min-width: 64em) {
	.hero-image .shared-play-button {
		left: unset;
		top: 180px;
		right: 18px;
	}
	.hero-image .content-section .slide-title {
		margin-bottom: 18px;
		font-size: 1.625rem;
	}

	.hero-image .content-section p {
		font-size: 6.875rem;
	}
}