.team-accordion-wrapper-a6bc386a {
	display: flex;
	flex-direction: row;
	width: 100%;
	gap: 10px;
	overflow: hidden;
}

.team-accordion-item-a6bc386a {
	flex: 1;
	display: flex;
	flex-direction: row;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	border-radius: 8px;
	transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
	background-color: #000; /* Behind image */
}

.team-accordion-item-a6bc386a.is-active {
	flex: 4;
}

.team-accordion-content-a6bc386a {
	width: 0;
	opacity: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease 0.2s, padding 0.6s ease;
	overflow: hidden;
	white-space: nowrap;
}

.team-accordion-item-a6bc386a.is-active .team-accordion-content-a6bc386a {
	width: 50%;
	opacity: 1;
	padding: 20px;
}

.team-accordion-text-wrap-a6bc386a {
	text-align: left;
	width: 100%;
}

.team-accordion-name-a6bc386a {
	margin: 0 0 5px;
	font-size: 1.5em;
}

.team-accordion-image-a6bc386a {
	width: 100%;
	height: 100%;
	transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
	position: relative;
}

.team-accordion-item-a6bc386a.is-active .team-accordion-image-a6bc386a {
	width: 50%;
}

.team-accordion-image-a6bc386a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
	transition: filter 0.6s ease;
	display: block;
}

.team-accordion-item-a6bc386a.is-active .team-accordion-image-a6bc386a img {
	filter: grayscale(0%);
}

@media (max-width: 767px) {
	.team-accordion-wrapper-a6bc386a {
		flex-direction: column;
	}

	.team-accordion-item-a6bc386a {
		flex-direction: column;
	}

	.team-accordion-content-a6bc386a {
		width: 100%;
		height: 0;
		padding: 0;
		transition: height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease 0.2s, padding 0.6s ease;
	}

	.team-accordion-item-a6bc386a.is-active .team-accordion-content-a6bc386a {
		width: 100%;
		height: 50%;
		padding: 20px;
	}

	.team-accordion-image-a6bc386a {
		width: 100%;
		height: 100%;
	}

	.team-accordion-item-a6bc386a.is-active .team-accordion-image-a6bc386a {
		width: 100%;
		height: 50%;
	}
}
