/*
	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-slider {
	margin-bottom: var(--widget-margin-bottom);
	padding-top: var(--widget-padding-top);
}

.core-slider:not([data-width="full"]) {
	margin-left: auto;
	margin-right: auto;
	padding: 0 var(--space-5);
	padding-top: var(--widget-padding-top);
	max-width: var(--width-base);
}

.core-slider:not([data-width="full"]) .widget-header {
	padding: 0;
}

.core-slider .slider-cont {
	position: relative;
}

.core-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;
	pointer-events: none;
}

.core-slider .slide > .inner {
	position: relative;
}

.core-slider .slide .slide-top {
	display: grid;
	gap: var(--space-2);
}

.core-slider .slide .content-section {
	display: grid;
	gap: var(--space-4);
	padding: var(--space-5) 0;
}

.core-slider .slide .content-section > .inner {
	display: grid;
	gap: var(--space-3);
}


.core-slider[data-width="full"] .slide .content-section {
	padding: var(--space-5) var(--space-4);
}

.core-slider .slide .slide-title {
	margin: 0;
}

.core-slider .slide p {
	margin: 0;
}

.core-slider .slide .img-cont {
	position: relative;
	overflow: hidden;
}

@media (min-width: 64em) {
	.core-slider[data-multi-slides="false"] .slide .slide-footer {
		margin-bottom: var(--space-1);
	}
}