/* Interactive Team Accordion – ac969f13 */

.ita-ac969f13-wrap {
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 550px;
	overflow: hidden;
	border-radius: 12px;
}

/* ── Individual Item ── */
.ita-ac969f13-item {
	position: relative;
	display: flex;
	flex-direction: row;
	flex: 1 1 0%;
	min-width: 0;
	overflow: hidden;
	cursor: pointer;
	transition: flex-grow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ita-ac969f13-item.ita-ac969f13-active {
	flex-grow: 6;
}

/* ── Content Panel (left side when expanded) ── */
.ita-ac969f13-content {
	position: relative;
	width: 0;
	min-width: 0;
	overflow: hidden;
	background-color: #1a1a2e;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), min-width 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0;
}

.ita-ac969f13-active .ita-ac969f13-content {
	width: 45%;
	min-width: 280px;
	padding: 30px;
}

.ita-ac969f13-content-inner {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
	white-space: normal;
	word-wrap: break-word;
}

.ita-ac969f13-active .ita-ac969f13-content-inner {
	opacity: 1;
	transform: translateY(0);
}

.ita-ac969f13-name {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 6px 0;
	line-height: 1.2;
}

.ita-ac969f13-job {
	font-size: 14px;
	font-weight: 600;
	color: #e94560;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	display: block;
	margin-bottom: 16px;
}

.ita-ac969f13-social {
	display: flex;
	gap: 14px;
	margin-bottom: 20px;
}

.ita-ac969f13-social a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.3s ease, transform 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ita-ac969f13-social a:hover {
	color: #e94560;
	transform: scale(1.2);
}

.ita-ac969f13-social a svg {
	transition: fill 0.3s ease;
}

.ita-ac969f13-bio {
	font-size: 14px;
	line-height: 1.7;
	color: #cccccc;
	margin: 0;
}

/* ── Image Panel ── */
.ita-ac969f13-img-wrap {
	position: relative;
	flex: 1 1 auto;
	overflow: hidden;
}

.ita-ac969f13-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(100%);
	transition: filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ita-ac969f13-active .ita-ac969f13-img-wrap img {
	filter: grayscale(0%);
}

/* Dark overlay on collapsed strips */
.ita-ac969f13-img-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.3);
	transition: background-color 0.6s ease;
	pointer-events: none;
}

.ita-ac969f13-active .ita-ac969f13-img-wrap::after {
	background-color: transparent;
}

/* ── Collapsed Label (vertical text) ── */
.ita-ac969f13-label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 16px 8px;
	text-align: center;
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.ita-ac969f13-active .ita-ac969f13-label {
	opacity: 0;
}

.ita-ac969f13-label-name {
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	display: inline-block;
}

/* ── Mobile: Stack Vertically ── */
@media (max-width: 767px) {
	.ita-ac969f13-wrap {
		flex-direction: column;
		height: auto !important;
	}

	.ita-ac969f13-item {
		flex-direction: column;
		flex: 0 0 auto;
		min-height: 80px;
		transition: min-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.ita-ac969f13-item.ita-ac969f13-active {
		flex-grow: unset;
		min-height: 450px;
	}

	.ita-ac969f13-content {
		width: 100% !important;
		min-width: 0 !important;
		height: 0;
		padding: 0 !important;
		transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.ita-ac969f13-active .ita-ac969f13-content {
		height: auto;
		padding: 24px !important;
	}

	.ita-ac969f13-img-wrap {
		min-height: 80px;
	}

	.ita-ac969f13-label-name {
		writing-mode: horizontal-tb;
	}
}
