/*
	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: calc(var(--widget-margin-bottom) + 40px);
	padding-top: var(--space-4);
}

.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;
	width: 100%;
	bottom: -35px;
	right: 0;
	z-index: 5;
	transform: translateY(50%);
	display: flex;
	justify-content: center;
	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 {
    bottom: 0;
	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-8);
}

.core-slider .slide .slide-title {
	margin: 0;
}

.core-slider .slide p {
	display: none;
}

.core-slider .slide .img-cont {
	position: relative;
	overflow: hidden;
}

/* .core-slider .slide-top .img-cont .mini-date-section .date-end {
	display: none;
} */

@media (min-width: 40em) {
	.core-slider {
		padding-top: var(--space-2);
	}
}

@media (min-width: 64em) {
	.core-slider .glide__arrows {
		width: auto;
		justify-content: flex-end;
		bottom: -35px !important;
		transform: translateY(50%);
	}


	.core-slider[data-multi-slides="false"] .slide .slide-footer {
		margin-bottom: var(--space-1);
	}
}