/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Cards family. This enables the ability to
	a family of widgets in a single update without touching the structure of the widget and without needing
	to duplicate efforts across several widget-specific CSS files.
*/

.core-v2-cards {
	.slides {
		gap: 30px;
	}

	.slide {
		border-radius: 15px;
		overflow: hidden;
	}

	.content-section {
		gap: 15px;
	}

	.content-upper {
		gap: 5px;
	}

	.slide-title {
		font-family: var(--font-display);
		font-weight: var(--font-weight-bold);
		line-height: 1.2;
	}
	
	.slide-desc {
		font-family: var(--font-body);
		font-weight: var(--font-weight-normal);
		font-size: var(--text-base);
		line-height: var(--leading-normal);
	}

	@container (min-width: 64em) {
		.slide-desc {
			font-size: var(--text-xl);
		}
	}
}
