.team-accordion-container-21b90a30 {
	display: flex;
	width: 100%;
	height: 500px;
	gap: 5px;
	overflow: hidden;
}
.team-accordion-item-21b90a30 {
	flex: 1;
	display: flex;
	position: relative;
	transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
	cursor: pointer;
	border-radius: 8px;
	overflow: hidden;
	background: #1a1a1a;
}
.team-accordion-item-21b90a30.active {
	flex: 6;
	cursor: default;
}
.team-accordion-content-21b90a30 {
	width: 50%;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-20px);
	transition: all 0.4s ease;
	transition-delay: 0s;
	background: #222;
	color: #fff;
	box-sizing: border-box;
}
.team-accordion-item-21b90a30.active .team-accordion-content-21b90a30 {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	transition-delay: 0.3s;
}
.team-accordion-img-wrapper-21b90a30 {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.team-accordion-item-21b90a30.active .team-accordion-img-wrapper-21b90a30 {
	width: 50%;
}
.ta-img-21b90a30 {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
	transition: filter 0.6s ease;
}
.team-accordion-item-21b90a30.active .ta-img-21b90a30 {
	filter: grayscale(0%);
}
.ta-name-21b90a30 { margin: 0 0 5px 0; font-size: 24px; }
.ta-job-21b90a30 { margin-bottom: 15px; font-size: 14px; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }
.ta-bio-21b90a30 { line-height: 1.6; margin-bottom: 20px; }
.ta-social-21b90a30 a { color: inherit; font-size: 20px; text-decoration: none; transition: opacity 0.2s; }
.ta-social-21b90a30 a:hover { opacity: 0.7; }

@media (max-width: 767px) {
	.team-accordion-container-21b90a30 {
		flex-direction: column;
		height: 800px;
	}
	.team-accordion-item-21b90a30 {
		flex-direction: column-reverse;
	}
	.team-accordion-content-21b90a30 {
		width: 100%;
		height: 50%;
		padding: 20px;
		transform: translateY(20px);
	}
	.team-accordion-item-21b90a30.active .team-accordion-content-21b90a30 {
		transform: translateY(0);
	}
	.team-accordion-img-wrapper-21b90a30 {
		position: relative;
	}
	.team-accordion-item-21b90a30.active .team-accordion-img-wrapper-21b90a30 {
		width: 100%;
		height: 50%;
	}
}