.scd-b368bcd8-wrapper {
	position: relative;
	width: 100%;
}

.scd-b368bcd8-sticky-container {
	position: sticky;
	top: 0;
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	perspective: 1000px;
}

.scd-b368bcd8-deck {
	position: relative;
	width: 90%;
	max-width: 1100px;
	height: 70vh;
	min-height: 500px;
	margin: 0 auto;
}

.scd-b368bcd8-card {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0 -15px 50px rgba(0,0,0,0.15); 
	will-change: transform, opacity;
	transform-origin: bottom center; 
	overflow: hidden;
	transition: transform 0.1s ease-out, opacity 0.1s ease-out, box-shadow 0.3s ease; 
}

.scd-b368bcd8-card-content {
	display: flex;
	flex-direction: row;
	height: 100%;
	width: 100%;
}

.scd-b368bcd8-card-left {
	flex: 1;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.scd-b368bcd8-top-group {
	margin-bottom: 20px;
}

.scd-b368bcd8-icon {
	margin-bottom: 16px;
	font-size: 28px;
	color: #333;
}

.scd-b368bcd8-icon svg {
	width: 28px;
	height: 28px;
	fill: #333;
}

.scd-b368bcd8-h3 {
	font-family: var(--e-global-typography-primary-font-family), sans-serif;
	font-size: 24px;
	font-weight: 500;
	color: #111;
	margin: 0 0 12px 0;
}

.scd-b368bcd8-p {
	font-family: var(--e-global-typography-text-font-family), sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #555;
	margin: 0;
}

.scd-b368bcd8-bottom-group {
	margin-top: auto;
}

.scd-b368bcd8-h2 {
	font-family: var(--e-global-typography-primary-font-family), sans-serif;
	font-size: 42px;
	font-weight: 700;
	color: #000;
	margin: 0;
	line-height: 1.1;
}

/* Boxed Square Image Layout Updates */
.scd-b368bcd8-card-right {
	flex: 1;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

.scd-b368bcd8-card-right img {
	width: 100%; /* Default width, controllable via widget settings */
	height: auto;
	aspect-ratio: 1 / 1; /* Forces a perfect square */
	object-fit: cover;
	object-position: center;
	border-radius: 16px; /* Rounded corners on all sides for the boxed square look */
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
	.scd-b368bcd8-deck {
		height: 80vh;
	}
	.scd-b368bcd8-card-content {
		flex-direction: column;
	}
	.scd-b368bcd8-card-left {
		padding: 24px;
		flex: 1 1 auto;
	}
	.scd-b368bcd8-h2 {
		font-size: 28px;
	}
	.scd-b368bcd8-card-right {
		flex: 1 1 40%;
		padding: 0 24px 24px 24px; /* Padding for mobile layout */
	}
	.scd-b368bcd8-card-right img {
		width: 100%;
		height: auto;
	}
}