/*
	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-slider .slider-cont {
	position: relative;
	width: calc(100% - var(--space-10));
	max-width: calc(var(--width-base) - var(--space-10));
	margin: 0 auto;
}

.core-v2-slider .glide__arrows {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	z-index: 5;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	pointer-events: none;
}

.core-v2-slider .slide > .inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
}

.core-v2-slider .slide-top {
	margin-bottom: var(--space-5);
}

.core-v2-slider .content-section {
	gap: var(--space-4);
}

/*----- full-width -----*/

.core-v2-slider.full-width .slider-cont {
	width: 100%;
	max-width: none;
	margin: 0;
}

.core-v2-slider.full-width .content-section {
	padding: 0 var(--space-4);
}

/*----- media queries -----*/

@container (min-width: 64em) {
	.core-v2-slider .slide.overlap-image-desktop .slide-top {
		margin: 0;
	}

	.core-v2-slider .slide.overlap-image-desktop .content-section {
		max-width: var(--width-comfortable);
		padding: var(--space-4) var(--space-16);
	}
}