/*
    README

    This file should only be used to style structure of the widget. It should not
    contain fonts or theme styling. Use the shared_theme.css for that purpose.

    If simply theming the CCL, leave this file alone.

    If your design is very customized, edit this file as needed. 
*/

.core-hero-slideshow {
    --text-container-width: var(--width-comfortable);
    position: relative;
    overflow: hidden;
    border-radius: 0 0 80px 25px;
}

.core-hero-slideshow .slider-cont {
    position: relative;
}

.core-hero-slideshow .content-section {
    padding: var(--space-5) var(--space-12) var(--space-5) var(--space-5);
    position: relative;
    left: 0;
    pointer-events: none;
    display: grid;
    background: white;
}

@media (min-width: 40em) {
    .core-hero-slideshow {
        border-radius: 0 0 165px 90px;
    }

    .core-hero-slideshow .content-section {
        position: absolute;
        max-width: var(--text-container-width);
        left: 0;
        bottom: 0;
        border-radius: 0 60px 0 0;
        top: auto;
    }
}

.core-hero-slideshow .slide-title {
    pointer-events: none;
    margin-bottom: var(--space-2);
    width: 80%;
}

@media (min-width: 40em) {
    .core-hero-slideshow a .slide-title,
    .core-hero-slideshow .slide-title {
        width: 70%;
    }
}

.core-hero-slideshow .description {
    display: none;
    padding-bottom: var(--space-5);
}

.core-hero-slideshow .slide .slide-footer {
    display: none;
    margin: 0;
    position: absolute;
    left: 0;
    bottom: var(--space-6);
}
.core-hero-slideshow .slide .slide-footer .read-more {
    pointer-events: all;
    padding: var(--space-2) var(--space-5);
    margin: 0;
    margin-left: var(--space-40);
}


@media (min-width: 40em) {
    .core-hero-slideshow .description {
        display: block;
    }

    .core-hero-slideshow .slide .slide-footer {
        bottom: var(--space-10);
    }
    .core-hero-slideshow .slide .slide-footer .read-more {
        margin-left: var(--space-48);
    }
}

.core-hero-slideshow .arrows-cont .glide__arrows {
    position: absolute;
    padding: 0 15px;
    width: 110px;
    height: 35px;
    bottom: 0px;
    left: 50%;
    gap: 8px;
    margin-left: -55px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    background: var(--white);
    border-radius: var(--rounded-3xl) var(--rounded-3xl) 0 0;
}

.core-hero-slideshow .glide__arrows .glide__arrow {
	padding: 0 10px;
    background-size: 22px 25px;
    width: 18px;
}

.core-hero-slideshow .glide__arrow.glide__arrow--left { 
    background: url(/includes/public/assets/shared/arrows/arrow_left_grey.svg) no-repeat center var(--arrow-bg-color);
    background-size: 22px 25px;
}

.core-hero-slideshow .glide__arrow.glide__arrow--right { 
    background: url(/includes/public/assets/shared/arrows/arrow_right_new.svg) no-repeat center var(--arrow-bg-color);
    background-size: 22px 25px;
}

@media (min-width: 40em) {
    .core-hero-slideshow .arrows-cont .glide__arrows {
        bottom: 0;
        right: var(--space-32);
        left: auto;
        height: 58px;
        padding: 5px 15px;
    }

    .core-hero-slideshow .glide__arrows .glide__arrow {
        padding: 10px;
    }
} 

@media (min-width: 64em) {
    .core-hero-slideshow .glide__arrow.glide__arrow--left:hover { 
        background: url(/includes/public/assets/shared/arrows/arrow_left_black.svg) no-repeat center var(--arrow-bg-color);
        background-size: 22px 25px;
    }
    
    .core-hero-slideshow .glide__arrow.glide__arrow--right:hover { 
        background: url(/includes/public/assets/shared/arrows/arrow_right_black.svg) no-repeat center var(--arrow-bg-color);
        background-size: 22px 25px;
    }
}