.accordion-container{
	display: flex;
	justify-content: space-between;
	column-gap: 64px;
}
.accordion-content-wrapper{
	display: flex;
	flex-direction: column;
	row-gap: 8px;
	width: 44%;
}
.accordion.no-images .accordion-content-wrapper{
	width: 100%;
}
.accordion-desktop-image{
	width: 38%;
	min-height: 350px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	position: relative;
}

.accordion-desktop-image-item {
	display: none;
	width: 100%;
}

.accordion-desktop-image-item img {
	transition: opacity 0.4s ease-in-out;
	width: 100%;
	height: auto;
	opacity: 0;
}
.accordion-mobile-image{
	display: none;
}
.accordion-title{
	cursor: pointer;
	margin-bottom: 0;
	color: --text-color;
	font-size: 19px;
	font-weight: 600;
}

/* Hide accordion content by default */
.accordion-item .accordion-content {
	max-height: 0;
	padding-left: 16px;
	border-left: 2px solid var(--primary-bg-color);
	overflow: hidden;
	transition:all 0.3s ease-out;
	margin-top: 0px;
	margin-bottom: 0px;
}
.accordion-content .editor{
	font-size: 18px;
	font-weight: 300;
	margin-top: 6px;
	margin-bottom: 6px;
}

/* Style for accordion title (make it look clickable) */
.accordion-title {
	cursor: pointer;
	user-select: none;
	transition: all 0.3s ease;
}

/* Active state for open accordion */
.accordion-item.active .accordion-content {
	max-height: 5000px; /* Large enough for most content, JS will set exact height */
	transition: max-height 0.3s ease-in;
	margin-top: 6px;
	margin-bottom: 6px;

}

@media only screen and (max-width: 768px) {
	.accordion-desktop-image{
		display: none;
	}
	.accordion-mobile-image{
		display: block;
	}
	.accordion-content-wrapper{
		width: 100%;
	}
	.accordion-mobile-image{
		display: flex;
		justify-content: center;
		margin-top: 32px;
		margin-bottom: 24px;
	}
	.accordion-mobile-image img{
		max-width: 50%;
	}
	.accordion-item.active .accordion-content{
		margin-bottom: 24px;
	}
}