/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Header Slideshow 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-slideshow {
	margin-bottom: var(--space-10);
}

.core-hero-slideshow .content-section {
	left: 50%;
	transform: translateX(-50%);
	bottom: var(--space-5);
	width: 100%;
	max-width: 280px;
	margin: 0;
	padding: var(--space-4);
	background-color: rgba(16, 15, 15, 0.55);
	line-height: 0px;
	border-radius: 5px;
}

.core-hero-slideshow.has-arrows .content-section {
	padding-bottom: var(--space-10);
}

.core-hero-slideshow .arrows .arrow-cont {
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: var(--space-5);
	z-index: 11;
	pointer-events: none;
	width: 100%;
	max-width: 280px;
	margin: 0;
	padding: var(--space-4);
}

.core-hero-slideshow .arrows .arrow-cont .arrows-inner {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding-right: 28px;
	padding-bottom: var(--space-3);
}

.core-hero-slideshow .arrows .arrow-cont .custom-arrow {
	background: transparent;
	color: var(--white);
	width: auto;
	height: auto;
	font-size: 12px;
	box-shadow: 0px 0px 0px;
}

.core-hero-slideshow .arrows .arrow-cont .counter {
	display: none;
	font-family: var(--font-display);
	color: var(--white);
	margin: 0 8px;
	font-size: 13px;
}

.core-hero-slideshow.show-controls .arrows .arrow-cont .counter {
	display: block;
}

.core-hero-slideshow .slide-title {
	font-family: var(--font-display-semibold);
	font-size: 16px;
	line-height: 18px;
	font-weight: var(--font-display-semibold-weight);
	margin: 0 0 var(--space-3);
	width: 100%;
	letter-spacing: 0.5px;
}

@media (max-width: 40em) {
	.core-hero-slideshow .slide-title {
		width: 95%;
	}
}

.core-hero-slideshow .description {
	display: inline;
	color: var(--white);
	font-size: var(--text-sm);
	line-height: 20px;
	padding: 0;
}

.core-hero-slideshow .link-btn {
	position: relative;
	display: inline-flex;
	align-items: flex-end;
	font-weight: var(--font-display-semibold-weight);
	font-family: var(--font-display-semibold);
	font-size: 13px;
	line-height: 18px;
	text-transform: uppercase;
	background-color: transparent;
	padding: 0;
	color: var(--white);
	left: initial;
	bottom: initial;
}

.core-hero-slideshow .link-btn i {
	margin-left: 2px;
}

.core-hero-slideshow .slide .img-cont::after {
	display: none;
}

@media (hover: hover) {
	.core-hero-slideshow .link-btn:hover {
		background-color: transparent;
	}
}

@media (min-width: 40em) {
	.core-hero-slideshow .content-section,
	.core-hero-slideshow .arrows .arrow-cont {
		left: var(--space-10);
		bottom: var(--space-10);
		transform: none;
		max-width: 380px;
	}
}

@media (min-width: 64em) {
	.core-hero-slideshow {
		margin-bottom: var(--space-28);
	}

	.core-hero-slideshow.short {
		margin-bottom: 90px;
	}
	
	.core-hero-slideshow .content-section {
		padding: var(--space-6);
	}

	.core-hero-slideshow .slide-title {
		font-size: 17px;
		line-height: 25px;
		letter-spacing: 1px;
	}
}

@media (hover: hover) {
	.core-hero-slideshow .slide-title:hover,
	.core-hero-slideshow .slide-title a:hover {
		text-decoration: none !important;
	}
}