/*
	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 {
	--color-primary: var(--taupe);
	--color-btn: var(--green-2d);
	--color-accent: var(--orange);
	--color-btn-hover: var(--green);
}

.core-side-by-side .slide .dtn {
	font-family: var(--font-bold);
	color: var(--orange);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
}

.core-side-by-side .slide .slide-title {
	color: var(--color-primary);
}

.core-side-by-side .slide p {
	color: var(--color-primary);
	font-weight: unset;
}

.core-side-by-side .slide .slide-footer a {
	background-color: var(--color-btn);
}

@media (hover: hover) {
	.core-side-by-side .slide .slide-title > a:hover,
	.core-side-by-side .slide .slide-title:hover {
		color: var(--color-primary);
	}

	.core-side-by-side .slide .slide-footer a:hover {
		background-color: var(--color-btn-hover);
	}
}