.ita-container-52da8d1b {
	display: flex;
	flex-direction: row;
	height: 500px; /* Overridden by Elementor settings */
	gap: 10px;     /* Overridden by Elementor settings */
	width: 100%;
}

.ita-item-52da8d1b {
	flex: 1;
	transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease;
	display: flex;
	cursor: pointer;
	overflow: hidden;
	border-radius: 12px;
	background-color: #f8f9fa; /* Overridden by Elementor settings */
}

.ita-image-52da8d1b {
	flex: 1;
	background-size: cover;
	background-position: center;
	filter: grayscale(100%);
	transition: filter 0.6s ease;
	min-width: 80px;
}

.ita-content-52da8d1b {
	width: 0;
	opacity: 0;
	overflow: hidden;
	transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, padding 0.4s ease;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	white-space: nowrap; /* Prevent wrapping during animation */
}

/* Active State */
.ita-item-52da8d1b.active {
	flex: 4;
	cursor: default;
}

.ita-item-52da8d1b.active .ita-image-52da8d1b {
	filter: grayscale(0%);
	flex: 1;
}

.ita-item-52da8d1b.active .ita-content-52da8d1b {
	width: 350px;
	opacity: 1;
	padding: 30px;
	flex-shrink: 0;
	white-space: normal;
}

/* Typography and Socials inside content */
.ita-name-52da8d1b {
	margin: 0 0 5px 0;
	font-size: 1.5rem;
	font-weight: bold;
}

.ita-job-52da8d1b {
	margin: 0 0 15px 0;
	font-size: 1rem;
	font-weight: 500;
	opacity: 0.8;
}

.ita-socials-52da8d1b {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}

.ita-socials-52da8d1b a {
	font-size: 0.9rem;
	text-decoration: none;
	color: #0073e6;
	font-weight: 600;
}

.ita-bio-52da8d1b {
	margin: 0;
	line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
	.ita-container-52da8d1b {
		flex-direction: column;
	}

	.ita-item-52da8d1b {
		flex-direction: column;
	}

	.ita-image-52da8d1b {
		min-height: 80px;
		width: 100%;
	}

	.ita-content-52da8d1b {
		width: 100%;
		height: 0;
		padding: 0;
	}

	.ita-item-52da8d1b.active .ita-content-52da8d1b {
		width: 100%;
		height: auto;
		padding: 20px;
	}
}