.ita-container-bdafee59 {
	display: flex;
	flex-direction: row;
	width: 100%;
	gap: 15px;
	overflow: hidden;
}

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

.ita-item-bdafee59.active {
	flex: 4;
	cursor: default;
}

/* Content Area */
.ita-content-bdafee59 {
	width: 0%;
	opacity: 0;
	transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease 0.2s;
	display: flex;
	align-items: center;
	background: #f8f9fa;
	overflow: hidden;
	flex-shrink: 0;
}

.ita-item-bdafee59.active .ita-content-bdafee59 {
	width: 50%;
	opacity: 1;
}

.ita-content-inner-bdafee59 {
	padding: 30px;
	min-width: 250px;
}

.ita-name-bdafee59 {
	margin: 0 0 5px 0;
	font-size: 24px;
	font-weight: bold;
}

.ita-job-bdafee59 {
	margin: 0 0 15px 0;
	font-size: 16px;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.ita-bio-bdafee59 {
	margin: 0 0 20px 0;
	font-size: 15px;
	line-height: 1.6;
}

.ita-social-bdafee59 {
	display: flex;
	gap: 15px;
}

.ita-social-bdafee59 a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: opacity 0.3s;
}

.ita-social-bdafee59 a:hover {
	opacity: 0.7;
}

/* Image Area */
.ita-image-wrapper-bdafee59 {
	flex: 1;
	min-width: 0;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.ita-image-bdafee59 {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
	transition: filter 0.6s ease, transform 0.6s ease;
	display: block;
}

.ita-item-bdafee59.active .ita-image-bdafee59 {
	filter: grayscale(0%);
}

.ita-item-bdafee59:hover:not(.active) .ita-image-bdafee59 {
	transform: scale(1.05);
}

/* Mobile Layout */
@media (max-width: 767px) {
	.ita-container-bdafee59 {
		flex-direction: column;
		min-height: 800px;
		height: auto !important;
	}

	.ita-item-bdafee59 {
		flex-direction: column;
	}

	.ita-item-bdafee59.active {
		flex: 1;
		min-height: 400px;
	}

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

	.ita-item-bdafee59.active .ita-content-bdafee59 {
		width: 100%;
		height: 50%;
	}
	
	.ita-image-wrapper-bdafee59 {
		width: 100%;
		height: 100%;
	}
	
	.ita-item-bdafee59.active .ita-image-wrapper-bdafee59 {
		height: 50%;
	}
}