/*==============================*/
/*=====----- TEMPLATE -----=====*/
/*==============================*/

.side-by-side-featured {
	position: relative;
	padding: 40px 16px 14px;
	background: var(--gray-cool);
	color: var(--gray-dark);
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--transition);
}

.side-by-side-featured.intersected {
	opacity: 1;
	pointer-events: all;
}

.side-by-side-featured::before,
.side-by-side-featured::after {
	position: absolute;
	z-index: 1;
	display: block;
	content: '';
	pointer-events: none;
}

.side-by-side-featured::before {
	inset: 0 0 auto;
	height: 140px;
	background: var(--green);
}

.side-by-side-featured::after {
	inset: auto 0 0;
	height: 73.87vw;
	background: url('/includes/public/assets/shared/abstract-water-shadow-line.svg') no-repeat center top / auto 100%;
}

.side-by-side-featured .side-by-side-featured-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 20px;
	max-width: 1116px;
	margin: 0 auto;
}

.side-by-side-featured .content-col/*,
.side-by-side-featured .image-col*/ {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}

/*============================*/
/*=====----- SLIDES -----=====*/
/*============================*/

.side-by-side-featured .content-box {
	padding: 24px 20px 32px;
	background: var(--white);
	border-radius: 12px;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.side-by-side-featured .title-icon {
	width: 64px;
	margin-bottom: 16px;
}

.side-by-side-featured .slide-title {
	margin-bottom: 16px;
	font-family: var(--font-display);
	font-weight: var(--font-weight-medium);
	font-size: 1.875rem;
	line-height: calc(17 / 15);
	color: inherit;
}

.side-by-side-featured .slide-desc {
	font-family: var(--font-body);
	font-weight: normal;
	font-size: var(--text-lg);
	line-height: calc(14 / 9);
	color: inherit;
}

.side-by-side-featured .learn-more {
	margin-top: 24px;
}

.side-by-side-featured .image-1,
.side-by-side-featured .image-2,
.side-by-side-featured .image-3 {
	position: relative;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 3px solid var(--white);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
}

.side-by-side-featured .image-1,
.side-by-side-featured .image-3 {
	z-index: 2;
}

.side-by-side-featured .image-1 {
	width: 35.2vw;
	margin: 0 0 -23.47vw auto;
}

.side-by-side-featured .image-2 {
	z-index: 1;
	width: 65.6vw;
	margin-left: 15.45%;
	border-width: 4px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.side-by-side-featured .image-3 {
	width: 28.27vw;
	margin: -23.73vw -14.13vw 0 0;
}

/*===================================*/
/*=====----- MEDIA QUERIES -----=====*/
/*===================================*/

@media (min-width: 64em) {
	.side-by-side-featured {
		transform: translateY(32px);
		padding-top: 82px;
		padding-bottom: 84px;
		background:
			url('/includes/public/assets/shared/abstract-water-shadow-line.svg') no-repeat center top / auto 100%,
			var(--gray-cool);
		transition: opacity var(--transition), transform var(--transition);
	}

	.side-by-side-featured.intersected {
		transform: none;
	}

	.side-by-side-featured::before,
	.side-by-side-featured::after {
		display: none;
	}

	.side-by-side-featured .side-by-side-featured-inner {
		grid-template-columns: 604px minmax(0, 1fr);
		gap: 44px;
	}

	.side-by-side-featured .content-col,
	.side-by-side-featured .image-col {
		max-width: none;
		margin: 0;
	}

	.side-by-side-featured .content-col {
		margin-top: 30px;
	}

	.side-by-side-featured .content-box {
		max-width: 440px;
		padding: 50px 43px 60px;
		margin-right: auto;
	}

	.side-by-side-featured .image-col {
		order: -1;
	}

	.side-by-side-featured .image-1,
	.side-by-side-featured .image-3 {
		border-width: 5px;
	}

	.side-by-side-featured .image-1 {
		width: 232px;
		margin-bottom: -153px;
	}
	
	.side-by-side-featured .image-2 {
		width: 434px;
		margin-left: 93px;
		border-width: 8px;
	}
	
	.side-by-side-featured .image-3 {
		width: 188px;
		margin: -153px -95px 0 0;
	}
}

@media (min-width: 75em) {
	.side-by-side-featured .title-icon {
		width: 72px;
	}

	.side-by-side-featured .slide-title {
		font-size: 2.375rem;
		line-height: calc(43 / 38);
	}

	
}