/*
	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-4);
}

.core-hero-image .content-section {
	padding: var(--space-5);
}

.core-hero-image .slide .slide-title,
.core-hero-image .slide .slide-title a {
	font-size: var(--text-xl);
}

.core-hero-image .slide p {
	font-size: var(--text-sm);
	font-weight: 400;
	display: inline-flex;
	flex-direction: column;
	gap: var(--space-5);
	line-height: 1.71;
}

.core-hero-image .read-more {
	font-weight: 700;
	display: inline-flex;
	background: var(--white-f2);
	padding: var(--space-3);
	color: var(--black);
	font-family: var(--font-display);
	letter-spacing: var(--tracking-widest);
	border-radius: var(--rounded-full);
	width: 100%;
	max-width: 23ch;
	text-transform: uppercase;
	align-items: center;
	justify-content: center;
}

@media (min-width: 40em) {
	.core-hero-image .slide .slide-title,
	.core-hero-image .slide .slide-title a {
		font-size: 1.5625rem;
	}
}

@media (min-width: 64em) {
	.core-hero-image {
		margin-bottom: var(--space-5);
	}

	.core-hero-image .slide {
		padding: 30px;
		padding-bottom: 0;
	}

	.core-hero-image .content-section {
		padding: 38px 30px;
	}
}