.webreach-accordion {
	--webreach-gap: 24px;
	--webreach-speed: 280ms;
	display: flex;
	gap: var(--webreach-gap);
	align-items: stretch;
}
.webreach-acc-left {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	border-top: 1px solid var( --e-global-color-primary );
	border-bottom: 1px solid var( --e-global-color-primary );
}
.webreach-acc-preview {
	width: 50%;
	position: relative;
	overflow: hidden;
	border: 2px solid var(--e-global-color-primary);
	border-radius: 15px;
	aspect-ratio: 1/1;
}
.webreach-acc-preview-item {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	pointer-events: none;
}
.webreach-acc-preview-item:first-child {
	opacity: 1;
	visibility: visible;
}
.webreach-acc-preview-item.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.webreach-acc-preview-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.webreach-accordion .webreach-acc-title {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 2px 0;
	font-size: 28px;
	font-weight: normal;
	border: none;
	border-radius: 0;
	&:hover, &:focus, &:active {
		background-color: transparent;
		color: black;
		border: none;
	}
}
.webreach-acc-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.webreach-acc-icon i,
.webreach-acc-icon svg {
	width: 40px;
	height: 40px;
	font-size: 40px;
}
.webreach-acc-title-text {
	flex: 1;
	text-align: left;
}
.webreach-accordion .webreach-acc-item.is-open > .webreach-acc-title {
	font-weight: bold;
}
.webreach-acc-plus{
	transition: transform 280ms ease;
	color: var(--e-global-color-primary);
	font-weight: normal;
}
.webreach-acc-item.is-open .webreach-acc-plus {
	transform: rotate(0deg);
}
.webreach-accordion .webreach-acc-panel {
	display: none;
	padding: 10px 0;
	color: black;
	overflow: hidden;
}
.webreach-acc-item {
	scroll-margin-top: 200px;
	position: relative;
}
.webreach-acc-line {
	height: 1px;
	background-color: #00D6CB;
	margin: 2px 0; /* Equal spacing above and below */
}
.webreach-acc-left.dynamic-spacing {
	justify-content: space-between;
}
@media (max-width: 992px) {
	.webreach-accordion {
		flex-direction: column;
	}
	.webreach-acc-preview{
		order: -1;
		flex-basis: auto;
		height: 300px;
	}
}