/*
	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-date-list .slides {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--space-4);
	max-width: var(--width-base);
	padding: 0 var(--space-5);
	margin: 0 auto;
}

.core-v2-date-list .slide > .inner.has-date {
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);
	gap: var(--space-4);
}

.core-v2-date-list .mini-date-section {
	position: static;
}

.core-v2-date-list .content-section {
	padding: var(--space-3) 0;
}

@container (min-width: 54em) {
	.core-v2-date-list .slides {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}