.ia-89-container {
	display: flex;
	flex-direction: row;
	width: 100%;
	overflow: hidden;
	gap: 10px;
}

.ia-89-item {
	position: relative;
	flex: 1;
	background-size: cover;
	background-position: center;
	transition: flex 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
	cursor: pointer;
	overflow: hidden;
	border-radius: 8px;
	display: flex;
	align-items: flex-end;
}

.ia-89-item.active,
.ia-89-item:hover {
	flex: 5;
}

.ia-89-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: opacity 0.5s ease;
	z-index: 1;
}

.ia-89-item.active .ia-89-overlay,
.ia-89-item:hover .ia-89-overlay {
	opacity: 0;
}

.ia-89-content-wrapper {
	position: relative;
	z-index: 2;
	width: 100%;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	pointer-events: none;
}

.ia-89-item.active .ia-89-content-wrapper,
.ia-89-item:hover .ia-89-content-wrapper {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	transition-delay: 0.2s;
}

.ia-89-content {
	color: #fff;
	backdrop-filter: blur(5px);
}

.ia-89-title {
	margin: 0 0 10px;
	font-size: 24px;
	color: #fff;
}

.ia-89-desc {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 1.5;
}

.ia-89-btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: #fff;
	color: #333;
	text-decoration: none;
	border-radius: 4px;
	font-weight: bold;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.ia-89-btn:hover {
	background-color: #333;
	color: #fff;
}

@media (max-width: 767px) {
	.ia-89-container {
		flex-direction: column;
		height: auto !important;
	}
	
	.ia-89-item {
		min-height: 100px;
		flex: none;
	}

	.ia-89-item.active {
		min-height: 300px;
	}
}