/*
	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-display);
	--font-desc: var(--font-body);
    --text-container-width: var(--width-comfortable);
    --letter-spacing: var(--tracking-wide);
    --title-text-size: var(--text-2xl);
    --btn-text-size: var(--text-base);
    --text-size: var(--text-base);
    --text-color: var(--gray-100);
    --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;
    left: 0;
    bottom: var(--space-12);
    z-index: 10;
    pointer-events: none;
    font-family: var(--font-desc);
}

@media (min-width: 40em) {
    .core-hero-slideshow .content-section {
        max-width: var(--text-container-width);
        left: var(--space-5);
        bottom: var(--space-20);
    }
}

.core-hero-slideshow a .slide-title,
.core-hero-slideshow .slide-title {
    color: var(--text-color);
    font-weight: 700;
    line-height: var(--leading-tight);
    font-size: var(--title-text-size);
    pointer-events: all;
    font-family: var(--font-title);
    margin-bottom: var(--space-2);
    width: 80%;

}

.core-hero-slideshow a .slide-title:hover {
    text-decoration: underline;
}

@media (min-width: 40em) {
    .core-hero-slideshow a .slide-title,
    .core-hero-slideshow .slide-title {
        width: 70%;
    }
}

.core-hero-slideshow .description {
    color: var(--text-color);
    font-size: var(--text-size);
    line-height: var(--leading-normal);
    padding-bottom: var(--space-5);
}

.core-hero-slideshow .link-btn {
    pointer-events: all;
    cursor: pointer;
}

.core-hero-slideshow .arrows .arrow-cont {
    position: absolute;
    bottom: var(--space-6);
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
    padding: 0 var(--space-5);
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 40em) {
    .core-hero-slideshow .arrows .arrow-cont {
        left: var(--space-5);
        bottom: var(--space-10);
    }
} 