/*
	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 {
	--slide-title-text-mobile: var(--font-weight-bold) 40px/120% var(--font-body);
	--slide-title-text-tablet: var(--font-weight-bold) 50px/120% var(--font-body);
	--slide-title-text-desktop: var(--font-weight-bold) 60px/120% var(--font-body);
	--description-text-mobile: var(--font-weight-normal) var(--text-base)/var(--leading-normal) var(--font-body);
	--description-text-tablet: var(--font-weight-normal) var(--text-xl)/var(--leading-normal) var(--font-body);
}

.core-side-by-side .slide .slide-title {
	margin: 0;
    font: var(--slide-title-text-mobile);
    color: var(--black);
}

@media screen and (min-width: 40em) {
    .core-side-by-side .slide .slide-title {
        font: var(--slide-title-text-tablet);
    }
}

@media screen and (min-width: 64em) {
    .core-side-by-side .slide .slide-title {
        font: var(--slide-title-text-desktop);
    }
}

.core-side-by-side .slide p {
    font: var(--description-text-mobile);
    color: var(--gray-dark);
}

@media screen and (min-width: 40em) {
    .core-side-by-side .slide p {
        font: var(--description-text-tablet);
    }
}
