/*
	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-title {
	margin: 0;
	font-family: var(--font-body-bold);
    font-size: 32px;
    line-height: 42px;
	color: var(--black);
}

@media (min-width: 40em) {
    .core-side-by-side .slide .slide-title {
        font-size: 59px;
        line-height: 69px;
    }
}

.core-side-by-side .slide p {
    font-size: var(--text-base);
    line-height: 1.7;
    font-weight: 400;
}

@media (min-width: 40em) {
    .core-side-by-side .slide p {
        font-size: var(--text-2xl);
        line-height: var(--leading-normal);
    }
}


.core-side-by-side .slide .category-tag {
	font-size: var(--text-base);
	line-height: var(--leading-normal);
	font-weight: 400;
	text-transform: uppercase;
    margin:0 0 12px 0;
}

@media (min-width: 40em) {
    .core-side-by-side .slide .category-tag {
		font-size: var(--text-xl);
		margin:0 0 20px 0;
	}
}