/*
	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-primary {
	color: var(--white);
}

.core-hero-image-primary .img-cont:after {
	content: "";
	background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
	bottom: 0;
	left: 0;
	position: absolute;
	pointer-events: none;
	height: 256px;
	width: 100%;
}

.core-hero-image-primary .content-section {
	padding-inline: 22px;
	padding-block: 19px;
}

.core-hero-image-primary .content-section .title-desc-container {
	display: grid;
	gap: 16px
}

.core-hero-image-primary .slide .sponsored {
	display: inline-block;
	width: fit-content;
	background-color: var(--orange);
	color: var(--gray-dark);
	margin-bottom: 1px;
	padding-block: 7px 6px;
	padding-inline: 11px 13px;
}

.core-hero-image-primary .slide .slide-title {
	margin-bottom: 0;
	font-family: var(--solano);
	text-transform: none;
	font-weight: var(--font-weight-bold);
	line-height: calc(30/35);
	font-size: 2.1875rem;
	color: inherit;
	letter-spacing: 0;
}

.core-hero-image-primary .slide .slide-title a {
	pointer-events: all;
}

.core-hero-image-primary .slide p {
	font-size: 1.0625rem;
	font-weight: var(--font-weight-demi);
	line-height: calc(21/17);
	color: inherit;
	letter-spacing: 0;
}

.core-hero-image-primary .slides .slide a.read-more:not(p *) {
	pointer-events: all;
	padding: 0;
	display: block;
	text-align: left;
	background-color: transparent;
	color: inherit;
}

.core-hero-image-primary .slide a.read-more:after {
	content: '\f061';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: var(--text-xs);
	margin-left: 3px;
	display: inline-block;
	transform: translateY(-1px);
}

.core-hero-image-primary .read-more {
	font-weight: 700;
	color: inherit;
}

.core-hero-image-primary .shared-play-button {
	--color: var(--white);
	filter: drop-shadow(0 0 5px rgba(0,0,0,.6));
	top: 62px;
	right: 7px;
	left: unset;
	transform: unset;
}


@media (hover: hover) {
	.core-hero-image-primary .slide.overlap-image .slide-title a:hover {
		text-decoration: none;
	}

	.core-hero-image-primary .slides .slide a.read-more:not(p *):hover {
		background-color: transparent;
		color: inherit;
	}
}

@media (min-width: 64em) {
	.core-hero-image-primary .slide .img-cont::after {
		height: 283px;
	}

	.core-hero-image-primary .content-section {
		padding-inline: 31px;
		padding-block: 30px;
	}

	.core-hero-image-primary .content-section .title-desc-container {
		gap: 17px
	}
	.core-hero-image-primary .slide .sponsored {
		margin-bottom: 3px;
	}

	.core-hero-image-primary .slide .slide-title {
		font-size: 2.5625rem;
		line-height: calc(35/41);
	}

	.core-hero-image-primary .slide p {
		line-height: calc(26/17);
	}

	.core-hero-image-primary .read-more {
		margin-top: 6px;
	}

	.core-hero-image-primary .shared-play-button {
		top: 50%;
		left: 50%;
		right: unset;
		transform: translate(-50%, -50%);
	}
}