/*
	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.hero-image .banner-content .title-desc-container {
	position: absolute;
	bottom: -20px;
	left: 20px;
	padding: 15px 20px;
	max-width: calc(100% - 40px);
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: var(--space-3);
	background-color: rgba(162,29,77,.8);
	height: auto;
	color: var(--white);
	font-family: var(--font-body);
}

.core-hero-image.hero-image .banner-content .sponsored {
	font-family: var(--font-display);
	font-size: 30px;
	position: absolute;
	left: 20px;
	top: -25px;
}

.core-hero-image.hero-image .banner-content .banner-title {
	font-size: 25px;
	text-transform: uppercase;
	letter-spacing: 4px;
	line-height: 1.2;
	margin-bottom: 10px;
	font-family: var(--font-body);
	font-weight: 500;
	max-width: 100%;
}

.core-hero-image.hero-image .banner-content .banner-description {
	font-size: 16px;
	line-height: 1.2;
	margin-bottom: 10px;
}

.core-hero-image.hero-image .banner-content .read-more {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	display: flex;
	flex-direction: row;
	font-weight: 100;
}

.core-hero-image.hero-image .banner-content .read-more img {
	width: 25px;
	margin-left: 5px;
}

@media screen and (min-width: 64em) {
	.core-hero-image.hero-image .banner-content .title-desc-container {
		left: 145px;
		max-width: 665px;
		padding: 25px 40px;
	}
}
@media screen and (min-width: 1400px) {
	.core-hero-image.hero-image .banner-content .title-desc-container {
		    padding: 35px 40px;
	}
	.core-hero-image.hero-image .banner-content .sponsored {
		font-size: 30px;
		    left: 40px;

	}
	
	.core-hero-image.hero-image .banner-content .banner-title {
        font-size: 35px;
    }
	
	.core-hero-image.hero-image .banner-content .banner-description {
        font-size: 18px;
    }
	
	.core-hero-image.hero-image .banner-content .read-more {
        font-size: 18px;
        letter-spacing: 2px;
    }
}