/*
	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: radial-gradient(65% 70.8% at 40.4% 83.1%, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.00) 100%), transparent;
	pointer-events: none;
}

.core-hero-image .slide p {
	font-size: .9375rem;
	font-weight: normal;
	display: flex;
	flex-direction: column;
	gap: var(--space-5);
}

.core-hero-image .read-more {
	display: inline-block;
	padding: var(--space-3) var(--space-6);
	font-family: var(--font-display-heavy);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: var(--leading-none);
	color: var(--white-fd);
	background-color: var(--gray-14);
	text-transform: uppercase;
	text-decoration: none;
	width: fit-content;
	border: 4px solid var(--orange-ff);
	transition: background-color 300ms ease-out, color 300ms ease-out;
	pointer-events: all;
}

.core-hero-image .slide .slide-title {
	font-family: var(--font-title);
	font-size: 2.125rem;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: var(--tacking-normal);
	color: var(--color-display);
}

@media (min-width: 64em) {
	.core-hero-image .slide .slide-title {
		font-size: 2.75rem;
	}

	.core-hero-image .img-cont:after {
		background: linear-gradient(178deg, rgba(0, 0, 0, 0.00) 49.51%, rgba(0, 0, 0, 0.80) 98.15%), transparent;
	}

	.core-hero-image .slide p {
		font-size: 1.0625rem;
		letter-spacing: 1.76;
	}

	@media (hover: hover) {
		.core-hero-image .read-more:hover {
			background-color: var(--btn-bg-color-hover);
			color: var(--btn-text-color-hover);
		}

		.ccl-widget.core-hero-image .slide p > a.read-more:hover {
			text-decoration: none;
	
		}
	
	}
}