/*
	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) 40%);
	pointer-events: none;
}

.core-hero-image .slide p {
	font-size: var(--text-base);
	font-weight: normal;
}

.core-hero-image .read-more {
	font-weight: 700;
	color: var(--text-color);
}

/* Content Section */
.core-hero-image.core-hero-image .content-section {
	position: static;
	text-align: center;
	justify-content: center;
	padding: 30px 20.5px 25px;
	background-image: url(../jpg/blue_noise.jpg);
	max-width: none;
}

.core-hero-image.core-hero-image .content-section .slide-title, .core-hero-image.core-hero-image .content-section .slide-title a {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	font-weight: 600;
	color: white;
	max-width: 100%;
	margin-bottom: 0;
} 

.core-hero-image.core-hero-image .content-section .details {
	justify-items: center;
}

.core-hero-image.core-hero-image .content-section .details li {
	color: white;
	font-weight: 400;
	text-transform: none;
	font-style: italic;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 19.2px;
	letter-spacing: var(--tracking-normal);
}

.core-hero-image.core-hero-image .content-section .details li i {
	font-size: 15px;
	color: var(--light-teal);
}

.core-hero-image.core-hero-image .content-section p {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 24px;
	letter-spacing: var(--tracking-normal);
	color: white;
}

.core-hero-image.core-hero-image .content-section .read-more {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 14px;
	letter-spacing: var(--tracking-normal);
	color: white;
	border-bottom: 4px solid var(--light-teal);
	padding: 0 2px;
	pointer-events: visible;
	position: relative;
	background-color: transparent;
	z-index: 1;
	display: inline-block;
}

.core-hero-image.core-hero-image .content-section .title-desc-container {
	max-width: none;
	display: grid;
	gap: 8px;
}

/* Image Section */
.core-hero-image.core-hero-image .img-cont .credits {
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: var(--tracking-normal);
	text-shadow: none;
	background-color: #273443cc;
	font-style: normal;
	font-weight: 400;
	margin: 0;
	padding: 1px 8px;
	display: flex;
}

.core-hero-image.core-hero-image .img-cont .credits::before {
	content: "\f030";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	font-weight: 700;
	margin-right: 10px;
	width: 12px;
	height: 13px;
}

.core-hero-image.core-hero-image .img-cont::after {
	background: rgba(0, 0, 0, 0.4);
}

@media (min-width: 64em) {
/* Content Section */
	.core-hero-image.core-hero-image .content-section {
		display: block;
		width: fit-content;
		padding: 31px 0 29px 50px;
		position: absolute;
		left: 0;
		text-align: left;
		justify-items: flex-start;
		max-width: 436px;
		background-image: none;
	}

	.core-hero-image.core-hero-image .content-section .title-desc-container {
		max-width: 400px;
	}

	.core-hero-image.core-hero-image .content-section .slide-title, .core-hero-image.core-hero-image .content-section .slide-title a {
		font-size: 20px;
		line-height: 28px;
		letter-spacing: 1px;
	} 

	.core-hero-image.core-hero-image .content-section .details {
		justify-items: start;
	}

	.core-hero-image.core-hero-image .content-section .read-more::after {
		content: " ";
		position: absolute;
		height: 0px;
		bottom: 0px;
		right: 0;
		left: 0;
		background-color: var(--light-teal);
		z-index: -1;
		transition: height 300ms ease-in-out, opacity 300ms ease-in-out;
	}
}

@media (hover: hover) {
	.core-hero-image.core-hero-image .content-section .read-more:hover {
		color: var(--dark-blue);
		text-decoration: none;
		border-bottom: none;
	}

	.core-hero-image.core-hero-image .content-section .read-more:hover::after {
		height: 20px;
	}
}