/*
	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-v2-hero-image .img-cont::before {
	display: block;
    background: radial-gradient(at left bottom, rgba(0, 0, 0, 0.8) 5%, transparent 85%);
    height: 40%;
    bottom: 0;
    top: unset;
}

.core-v2-hero-image.hide-content .img-cont::before {
	background: none;
}

.core-v2-hero-image .slide-title {
	font-weight: 700;
	line-height: 1.1;
	font-size: 1.875rem;
	font-family: var(--font-display-alt);

}

.core-v2-hero-image .slide-desc {
	font-size: var(--text-lg);
	font-weight: normal;
	line-height: var(--leading-snug);
}

.core-v2-hero-image .read-more {
	font-weight: 700;
	color: var(--sw-collections-text-color-light);
}

@media (hover: hover) {
	.core-v2-hero-image.animation-expand .slide:hover .slide-img {
		scale: 1.02;
	}
}

@media (min-width: 64em) {
	.core-v2-hero-image .img-cont::before {
		background: radial-gradient(at left bottom, rgba(0, 0, 0, 0.85) 5%, transparent 70%);
        width: 50%;
	}
	.core-v2-hero-image .slide-title {
		font-size: 2.6875rem;
		line-height: var(--leading-none);
	}

	.core-v2-hero-image .content-section {
        padding: var(--space-5) var(--space-10) 40px;
    }
}