/*
	README

	Do NOT modify this file directly; a number of widgets depend on this file being as is.
	Use the CSS file that is associated with your widget
	(ie. template: widget_template_custom_my_widget.html, CSS: widget_template_custom_my_widget.css)
	to make any theme-ing or overwrites you need.

	If you need to make significant changes such that overwriting would be complicated
	consider not using a different component from the Core Collection Library or
	not using the Core Component Library altogether.

	If you still feel the need to edit this file, copy/paste this CSS into a different file
	and use that instead.
*/


.core-hero-slideshow {
	--font-title: var(--font-body);
	--font-desc: var(--font-body);
	--text-container-width: 50%;
	--letter-spacing: var(--tracking-wide);
	--title-text-size: 40px;
	--btn-text-size: 14px;
	--text-size: 20px;
	--text-color: #fff;
	--accent-text-color: var(--primary-color-900);
	--btn-bg-color: var(--primary-color-100);
	--btn-bg-color-hover: var(--primary-color-200);

	position: relative;
}

.core-hero-slideshow .slider-cont {
	position: relative;
}

.core-hero-slideshow .slick-slider:not(.slick-initialized) {
	max-height: 400px;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	pointer-events: none;
}

.core-hero-slideshow .slide .inner,
.core-hero-slideshow .slide .img-cont {
	position: relative;
}

.core-hero-slideshow .slide .img-cont::after {
	content: "";
	background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
	top: 0;
	left: 0;
	position: absolute;
	pointer-events: none;
	height: 100%;
	width: 100%;
}

.core-hero-slideshow .img-cont {
	position: relative;
}

.header-slideshow .img-cont img {
	display: block;
	width: 100%;
}

.core-hero-slideshow .content-section {
	padding: var(--space-5);
	position: absolute;
	bottom: 120px;
	z-index: 10;
	font-family: var(--font-desc);
	max-width: 50%;
}

.core-hero-slideshow .content-section.asset_overlay.top-left {
	left: 0;
	top: var(--space-5);
	bottom: auto;
}

.core-hero-slideshow .content-section.asset_overlay.top-right {
	right: 0;
	top: var(--space-5);
	left: auto;
	bottom: auto;
}

.core-hero-slideshow .content-section.asset_overlay.bottom-right {
	right: 0;
	bottom: 72px;
	left: auto;
	top: auto;
}

.core-hero-slideshow .content-section.asset_overlay_2.top-left {
	left: 0;
	top: var(--space-5);
	bottom: auto;
}

.core-hero-slideshow .content-section.asset_overlay_2.top-right {
	right: 0;
	top: var(--space-5);
	left: auto;
	bottom: auto;
}

.core-hero-slideshow .content-section.asset_overlay_2.bottom-right {
	right: 0;
	bottom: 72px;
	left: auto;
	top: auto;
}

.core-hero-slideshow .content-section img {
	margin-bottom: 10px;
}

.core-hero-slideshow a .slide-title,
.core-hero-slideshow .slide-title {
	color: var(--text-color);
	font-weight: 700;
	font-size: 30px;
	line-height: 35px;
	pointer-events: all;
	font-family: var(--font-title);
	margin-bottom: 5px;
	text-shadow: var(--text-shadow-image);
}

.core-hero-slideshow .slide-title:hover a,
.core-hero-slideshow .slide-title:hover {
	color: var(--text-color);
}

.core-hero-slideshow .description {
	color: var(--text-color);
	font-size: 16px;
	line-height: 20px;
	padding-bottom: var(--space-5);
	text-shadow: var(--text-shadow-image);
}

.core-hero-slideshow .link-btn {
	position: absolute;
	left: var(--space-10);
	bottom: 100px;
	display: inline-block;
}

.core-hero-slideshow .content-section a.link-btn:hover {
	text-decoration: underline;
}
.core-hero-slideshow .arrows .arrow-cont {
	position: absolute;
	bottom: 20px;
	left: 0px;
	right: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-3);
	padding: 0;
	z-index: 1;
	align-items: center;
}
.core-hero-slideshow .arrow-cont .counter {
	margin-right: 0px;
	font-size: 13px;
	font-weight: bold;
	color: #fff;
	text-shadow: 0px 0px 20px rgba(0,0,0,0.4);
	text-align: right;
}

@media (min-width: 40em) {
	.core-hero-slideshow .content-section {
		max-width: var(--text-container-width);
		left: var(--space-10);
		bottom: 70px;
		width: 30%;
	}

	.core-hero-slideshow .content-section.asset_overlay.top-right,
	.core-hero-slideshow .content-section.asset_overlay.bottom-right,
	.core-hero-slideshow .content-section.asset_overlay_2.top-right,
	.core-hero-slideshow .content-section.asset_overlay_2.bottom-right {
		right: var(--space-10);
	}

	.core-hero-slideshow .link-btn {
		left: var(--space-10);
		bottom: var(--space-8);
	}
	.core-hero-slideshow a .slide-title,
	.core-hero-slideshow .slide-title {
		font-size: var(--title-text-size);
		line-height: 45px;
	}
	.core-hero-slideshow .description {
		font-size: var(--text-size);
		line-height: var(--leading-normal);
	}
	.core-hero-slideshow .link-btn {
		margin: 0;
	}
	.core-hero-slideshow .content-section img {
		/* margin-bottom: 20px; */
	}

	.core-hero-slideshow .arrows .arrow-cont {
		left: auto;
		bottom: 35px;
		right: 40px;
		gap: var(--space-5);
	}
	.core-hero-slideshow .arrow-cont .counter {
		font-size: 16px;
	}
} 