/* Interactive Customer Accordion - 5117bbb9 */

.ica-5117bbb9-container {
	display: flex;
	width: 100%;
	height: 550px;
	overflow: hidden;
	gap: 4px;
}

.ica-5117bbb9-item {
	position: relative;
	flex: 1 1 0%;
	min-width: 0;
	overflow: hidden;
	cursor: pointer;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: flex-grow 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.ica-5117bbb9-inactive-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.ica-5117bbb9-item.ica-5117bbb9-active {
	flex-grow: 5;
}

.ica-5117bbb9-active .ica-5117bbb9-inactive-overlay {
	opacity: 0;
	pointer-events: none;
}


/* Vertical label shown on collapsed items */
.ica-5117bbb9-label {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 16px 8px;
	text-align: center;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.5);
	transition: opacity 0.3s ease;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.ica-5117bbb9-active .ica-5117bbb9-label {
	opacity: 0;
	pointer-events: none;
}

/* Content overlay on the left side of expanded item */
.ica-5117bbb9-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 45%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	box-sizing: border-box;
	opacity: 0;
	transform: translateX(-30px);
	transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
	z-index: 3;
}

.ica-5117bbb9-active .ica-5117bbb9-content {
	opacity: 1;
	transform: translateX(0);
}

.ica-5117bbb9-content-inner {
	max-width: 100%;
}

.ica-5117bbb9-heading {
	margin: 0 0 16px 0;
	font-size: 26px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
}

.ica-5117bbb9-description {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: #e0e0e0;
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
	.ica-5117bbb9-container {
		flex-direction: column;
		height: auto;
	}

	.ica-5117bbb9-item {
		flex: none;
		height: 80px;
		transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.ica-5117bbb9-item.ica-5117bbb9-active {
		height: 400px;
	}

	.ica-5117bbb9-label {
		writing-mode: horizontal-tb;
		transform: none;
		height: auto;
		padding: 12px 16px;
		justify-content: center;
	}

	.ica-5117bbb9-content {
		width: 100%;
		padding: 20px;
	}
}
