/*
    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;
}

.core-hero-slideshow .slider-cont {
    position: relative;
}

.core-hero-slideshow .content-section {
    padding: var(--space-5) 15px;
    position: absolute;
    left: 0;
    bottom: 68px;
    pointer-events: none;
    display: grid;
}

@media (min-width: 40em) {
    .core-hero-slideshow .content-section {
        max-width: 60ch;
        left: var(--space-5);
    }
}

.core-hero-slideshow .slide .slide-title {
    pointer-events: none;
    margin-bottom: 3px;
    color: var(--white);
    width: 90%;
}

@media (min-width: 40em) {
    .core-hero-slideshow a .slide-title,
    .core-hero-slideshow .slide-title {
        width: 70%;
    }
}

.core-hero-slideshow .description {
    padding-bottom: 23px;
}

.core-hero-slideshow .slide .slide-footer {
    margin: 0;
    position: absolute;
    left: 0;
    bottom: 47px;
}
.core-hero-slideshow .slide .slide-footer .read-more {
    pointer-events: all;
    padding: var(--space-2) 16px;
    margin: 0;
    color: var(--white);
    font-weight: 600;
}

.core-hero-slideshow .slide .slide-footer a.read-more::after {
    content: '';
    background: url(/includes/public/assets/shared/arrow-white.svg);
    height: 8px;
    width: 18px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
}

.core-hero-slideshow .shared-play-button {
    position: absolute;
    left: auto;
    right: 0;
    top: 130px;
}

@media (min-width: 40em) {
    .core-hero-slideshow .slide .slide-footer {
        bottom: var(--space-10);
        left: var(--space-5);
    }
}

.core-hero-slideshow .arrows-cont .glide__arrows {
    position: absolute;
    bottom: var(--space-6);
    right: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 17px;
    pointer-events: none;
    z-index: 1;
}

.core-hero-slideshow .arrows-cont .glide__arrows i  {
    content: url(/includes/public/assets/shared/arrow-white.svg);
    display: inline-block;
    margin-left: 1px;
    line-height: var(--leading-none);   
}

.core-hero-slideshow .arrows-cont .glide__arrows i.fa-angle-left  {
    rotate: 180deg;
}

.core-hero-slideshow .glide__arrows .glide__arrow {
    background-color: var(--tertiary-color-700);
    height: 46px;
    width: 45px;
}

@media (hover:hover) {
    .core-hero-slideshow .slide a.read-more:not(p *):hover, 
    .core-hero-slideshow .slide .slide-footer a:hover {
        color: var(--white);
    }
}

@media (min-width: 40em) {
    .core-hero-slideshow .arrows-cont .glide__arrows {
        bottom: var(--space-10);
    }
} 

@media screen and (min-width: 64em) {
    .core-hero-slideshow .content-section {
        bottom: var(--space-12);
    }

    .core-hero-slideshow .shared-play-button {
        left: 50%;
        right: 0;
        top: 50%;
    }

    .core-hero-slideshow .arrows-cont .glide__arrows {
        right: 60px;
    }
}