/*
	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: var(--space-1);}
.core-hero-image .banner-title {
	font-family: var(--font-contrast);
	font-size: var(--text-4xl);
	font-weight: 400;
	color: var(--white);
	line-height: var(--leading-none);
}
.core-hero-image .featured {
	color: #fff;
    background-color: var(--primary-color-900);
    padding: 2px 25px;
    margin-bottom: 13px;
    display: inline-block;
    border-radius: 20px;
    font-size: 13px;
}
.core-hero-image a .banner-title:hover,
.core-hero-image .banner-title:hover,
.core-hero-image .slide .banner-title > a:hover {
    text-decoration: none;
	color: var(--white);
}
.core-hero-image .banner-description {
	font-size: var(--text-sm);
	line-height: var(--leading-snug);
}
.core-hero-image .banner-content {
	padding: var(--space-8) var(--space-5);
}
.core-hero-image .banner-content .read-more {
	color: var(--white);
	font-size: var(--text-sm);
	text-decoration: underline;
}
.core-hero-image .banner-content .fas {
	vertical-align: middle;
    font-size: inherit;
    color: var(--white);
}
.core-hero-image .content-section { bottom: var(--space-6);}
.core-hero-image .arrows .arrow-cont {
	bottom: var(--space-56);
	padding-bottom: var(--space-1);
}

@media (min-width: 40em) {
	.core-hero-image { margin-bottom: var(--space-2);}

	.core-hero-image .banner-content {
		padding: var(--space-8) var(--space-12);
		bottom: calc(10vh);
	}

	.core-hero-image .banner-title {
		font-size: 45px;
		max-width: 100%;
	}
	.core-hero-image .banner-description,
	.core-hero-image .banner-content .read-more {
		font-size: var(--text-base);
		line-height: var(--text-lg);
	}
	.core-hero-image .banner-title,
	.core-hero-image .banner-description {
		margin-bottom: var(--space-5);
	}
}