/*
    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-v2-hero-slideshow {
    margin: 0;

    .slider-cont {
        display: flex;
        flex-direction: column-reverse;
    }
}

.core-v2-hero-slideshow .content-section {
    width: 100%;
    max-width: var(--width-comfortable);
    padding: var(--space-5) var(--space-5) 100px;
}

.core-v2-hero-slideshow .glide__arrows {
    position: absolute;
    bottom: var(--space-6);
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: var(--space-5);
    padding: 0 var(--space-5);
    pointer-events: none;
}

.core-v2-hero-slideshow .glide__arrow {
    margin: 0;
}

@media (hover: hover) {
	.core-v2-hero-slideshow.animation-expand .slide:hover .slide-img {
		scale: 1.02;
	}
}

@container (min-width: 40em) {
    .core-v2-hero-slideshow .shared-play-button {
        inset: 20px 20px auto auto;
        transform: none;
    }
}

@container (min-width: 64em) {
    .core-v2-hero-slideshow .slider-cont {
        flex-direction: column;
    }
    .core-v2-hero-slideshow .glide__arrows {
        left: var(--space-5);
        bottom: var(--space-10);
    }

    .core-v2-hero-slideshow .content-section {
        padding: var(--space-5) var(--space-10);
    }
} 