/*
	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-list .slides {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--space-12) var(--space-4);
	max-width: var(--width-base);
	padding: 0 var(--space-5);
	margin: 0 auto;
}

.core-v2-list.sm-two-col .slides {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.core-v2-list .slide > .inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	align-items: start;
}

.core-v2-list .slide-top {
	margin-bottom: var(--space-4);
}

.core-v2-list .content-section {
	gap: var(--space-4);
}

@container (min-width: 40em) {
	.core-v2-list.sm-two-col .slides {
		grid-template-columns: minmax(0, 1fr);
	}
	.core-v2-list .slide > .inner {
		display: grid;
		grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
		gap: var(--space-6);
	}	

	.core-v2-list .slide-top {
		margin-bottom: 0;
	}
}

@container (min-width: 64em) {
	.core-v2-list .slide > .inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
	}
}