/*
	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-imagebox .slides {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: var(--space-3);
	max-width: var(--width-base);
	margin: 0 auto;
	padding: 0 var(--space-5);

}

.core-v2-imagebox.sm-two-col .slides {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.core-v2-imagebox.full-width .slides {
	max-width: none;
	margin: 0;
	padding: 0;
}

.core-v2-imagebox .content-section {
	padding: var(--space-8) var(--space-4);
}

.core-v2-imagebox .content-upper {
	gap: var(--space-1);
}

.core-v2-imagebox .shared-play-button {
	top: 20px;
	right: 20px;
	left: unset;
	transform: unset;
}

@container (min-width: 64em) {
	.core-v2-imagebox .content-section {
		padding: var(--space-8);
	}
}
