/*
	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 {
    margin-bottom: 30px;
}

.core-hero-image .img-cont:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, #000000cc 0%, #00000000 100%);
	pointer-events: none;
}

.core-hero-image .content-section {
	padding: 28px 20px;
	max-width: 690px;
}

.core-hero-image .slide .slide-title {
	font-size: calc(30rem/16);
	line-height: calc(32/30);
	margin-bottom: 3px;
	max-width: unset;
}

.core-hero-image .content-section a {
	pointer-events: all;
	text-decoration: none;
}

.core-hero-image .slide.overlap-image p {
	font-size: 0;
}

.core-hero-image .read-more {
	font-size: calc(14rem/16);
	font-weight: var(--weight-medium);
	opacity: 1;
	color: var(--white);
}

.core-hero-image .read-more:after {
	content: '';
	pointer-events: none;
	display: inline-block;
	width: 28px;
	height: 10px;
	background-image: url(/includes/public/assets/shared/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: contain;
	margin-left: 8px;
}

.core-hero-image .shared-play-button {
	left: unset;
	transform: unset;
	right: 20px;
	top: 20px;
}

@media (hover: hover) {
	.core-hero-image .slide.overlap-image .content-section a:hover {
		text-decoration: none;
	}
}

@media (min-width: 64em) {
    .core-hero-image {
        margin-bottom: 50px;
    }

	.core-hero-image .img-cont:after {
		height: 50%;
	}

	.core-hero-image .content-section {
		padding: 37px 50px;
	}

	.core-hero-image .slide .slide-title {
		font-size: 3rem;
		line-height: calc(50/48);
		margin-bottom: 7px;
	}

	.core-hero-image .read-more {
		font-size: 1rem;
	}

	.core-hero-image .shared-play-button {
		right: unset;
		left: 50%;
		top: 50%;
		translate: -50% -50%;
	}
}