/*
	README

	Modify this file as much or as little as needed.

	This file is shared across all CCL widgets in the Side-by-Side 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-side-by-side {
	margin-bottom: var(--widget-margin-bottom);
	padding-top: var(--widget-padding-top);
}

.core-side-by-side .slide + .slide {
	margin-top: var(--space-8);
}

.core-side-by-side .slide .slide-title {
	margin: 0;
	font-family: var(--bebas);
	font-size: 50px;
	font-weight: var(--font-weight-semibold);
	line-height: calc(52/50);
	color: var(--blue-dark);
	text-transform: uppercase;
}

.core-side-by-side .slide .slide-subtitle {
	color: var(--blue-dark);
	font-family: var(--bebas);
	font-size: 32px;
	font-weight: var(--font-weight-semibold);
	line-height: 1;
}

.core-side-by-side .slide p {
	font-size: 15px;
	line-height: calc(20/15);
}

@media (min-width: 64em) {
	.core-side-by-side .slide .slide-title {
		color: var(--blue);
		font-size: 60px;
		line-height: 1;
	}

	.core-side-by-side .slide .slide-subtitle {
		font-size: 44px;
	}

	.core-side-by-side .slide p {
		font-size: 16px;
		line-height: calc(24/16);
	}
}