/*
	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-date-list {
	position: relative;
	margin: 0 auto;
	padding: 0 var(--space-5);
	max-width: var(--width-base);
}

.core-date-list .widget-header {
	padding: 0;
}

.core-date-list .slides {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: var(--space-6);
}

.core-date-list .slides > * {
	flex: 1 1 390px;
	margin-bottom: var(--space-4);
}

.core-date-list .slide > .inner {
	display: flex;
}

.core-date-list .date {
	display: inline-block;
	padding: var(--space-5) var(--space-4);
	text-align: center;
}

.core-date-list .date > * {
	display: block;
}

.core-date-list .slide .content-section {
	display: grid;
	gap: var(--space-4);
	padding: var(--space-3) var(--space-4);
}

.core-date-list .slide .content-section > .inner {
	display: grid;
	gap: var(--space-1);
}

.core-date-list .slide .slide-title {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
}

.core-date-list .slide .slide-title > a {
	color: inherit;
}

.core-date-list .blog-feed-header {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(5ch, max-content));
	gap: var(--space-4);
}