.isa-container-e946431f {
	display: flex;
	width: 100%;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.isa-item-e946431f {
	display: flex;
	flex-direction: row;
	flex: 1;
	min-width: 60px;
	cursor: pointer;
	transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	position: relative;
	overflow: hidden;
}

.isa-item-e946431f::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	z-index: 2;
	transition: opacity 0.6s ease;
	pointer-events: none;
}

.isa-item-e946431f.active::before {
	opacity: 0;
}

.isa-item-e946431f.active {
	flex: 8;
	cursor: default;
}

.isa-content-wrapper-e946431f {
	width: 0;
	opacity: 0;
	transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease 0.2s;
	background-color: var(--e-global-color-text, #333);
	color: #fff;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-shrink: 0;
}

.isa-item-e946431f.active .isa-content-wrapper-e946431f {
	width: 40%;
	opacity: 1;
}

.isa-content-e946431f {
	padding: 2rem;
	min-width: 250px;
}

.isa-title-e946431f {
	color: var(--e-global-color-primary, #fff);
	margin-top: 0;
	margin-bottom: 1rem;
	white-space: nowrap;
}

.isa-desc-e946431f {
	color: rgba(255,255,255,0.8);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.isa-link-e946431f {
	display: inline-block;
	color: var(--e-global-color-accent, #ff6b35);
	text-decoration: none;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 1px;
	position: relative;
}

.isa-link-e946431f::after {
	content: '→';
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.isa-link-e946431f:hover::after {
	transform: translateX(5px);
}

.isa-image-e946431f {
	flex-grow: 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	filter: grayscale(100%);
	transition: filter 0.6s ease;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 2rem;
}

.isa-item-e946431f.active .isa-image-e946431f {
	filter: grayscale(0%);
}

.isa-vertical-title-e946431f {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-weight: 700;
	font-size: 1.2rem;
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 2px;
	z-index: 3;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.isa-vertical-title-e946431f span {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}

.isa-item-e946431f.active .isa-vertical-title-e946431f {
	opacity: 0;
	transform: translateX(-50%) translateY(20px);
}

/* Responsive */
@media (max-width: 768px) {
	.isa-container-e946431f {
		flex-direction: column;
		height: 600px !important; /* Override inline style on mobile */
	}
	
	.isa-item-e946431f {
		flex-direction: column;
		min-height: 60px;
		min-width: 100%;
	}
	
	.isa-item-e946431f.active .isa-content-wrapper-e946431f {
		width: 100%;
		height: auto;
		flex: 1;
	}
	
	.isa-content-wrapper-e946431f {
		width: 100%;
		height: 0;
	}
	
	.isa-vertical-title-e946431f {
		bottom: auto;
		left: 2rem;
		top: 50%;
		transform: translateY(-50%);
	}
	
	.isa-vertical-title-e946431f span {
		writing-mode: horizontal-tb;
		transform: none;
	}
	
	.isa-item-e946431f.active .isa-vertical-title-e946431f {
		transform: translateY(-50%) translateX(-20px);
	}
}