/*
	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-text: var(--white);

	margin-bottom: var(--widget-margin-bottom);
	padding-top: var(--widget-padding-top);
}

.core-side-by-side .slide .content-section {
	padding: var(--space-5);
}

.core-side-by-side .slide .content-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background: url("/includes/public/assets/shared/white-reeds.svg");
    background-repeat: no-repeat;
    background-position: 124px 100%;
    background-size: cover;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.095;
}

.core-side-by-side .slide .slide-title {
	margin: 0;
	font-family: var(--font-droid);
	font-size: 26px;
	line-height: var(--leading-tight);
	color: var(--color-text);
	line-height: 1.4;
}

.core-side-by-side .slide p {
	font-size: 16px;
	line-height: var(--leading-tight);
	color: var(--color-text);
	line-height: 1.8;
}

.core-side-by-side .slide .slide-title > a:hover{
    text-decoration: none;
}

.core-side-by-side .slide a.read-more:not(p *),
.core-side-by-side .slide .slide-footer a {
    border: 0 solid var(--blue-4d);
    background-color: var(--blue-4d);
    color: var(--white);
    z-index: 1;
}

@media (hover: hover) {
    .core-side-by-side .slide a.read-more:not(p *):hover,
    .core-side-by-side .slide .slide-footer a:hover {
        border: 0 solid var(--blue-007);
        background-color: var(--blue-007);
        color: var(--white);
    }
}
