/*
	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.
*/

.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) 40%);
	pointer-events: none;
}

.hero-image .slide p {
	font-size: var(--text-base);
	font-weight: normal;
}

.hero-image .read-more {
	font-weight: 400;
	font-size: 13px;
	color: var(--text-color);
	text-transform: uppercase;
	letter-spacing: 2.08px;
	display: flex;
	align-items: center;
	gap: var(--space-2);
	margin-top: var(--space-2);
}

.hero-image .read-more .triangle {
	display: inline-block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 6px 0 6px 10px;
	border-color: transparent transparent transparent var(--gold);
	position: relative;
}

.hero-image .sponsored {
	display: inline-block;
	background: rgba(84, 80, 76, 0.64);
	padding: 2px var(--space-4);
	text-transform: uppercase;
	color: var(--white);
	font-family: var(--font-body);
	font-size: 10px;
	letter-spacing: 0.8px;
	margin-bottom: 8px;
}