.ha-7523-container {
	display: flex;
	gap: 20px;
	width: 100%;
	height: 400px;
}

.ha-7523-item {
	flex: 1;
	background-color: #f3f4f6;
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	overflow: hidden;
	position: relative;
	min-width: 120px;
}

.ha-7523-item.active {
	flex: 3;
}

.ha-7523-header {
	margin-bottom: 20px;
}

.ha-7523-title {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 600;
	color: #111827;
}

.ha-7523-body {
	flex-grow: 1;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
	overflow-y: auto;
	height: 0;
}

.ha-7523-item.active .ha-7523-body {
	opacity: 1;
	visibility: visible;
	transition-delay: 0.2s;
	height: auto;
}

.ha-7523-content {
	font-size: 0.95rem;
	color: #374151;
	line-height: 1.5;
}

.ha-7523-content ul {
	padding-left: 20px;
	margin-top: 10px;
}

.ha-7523-content li {
	margin-bottom: 8px;
}

.ha-7523-footer {
	margin-top: auto;
	display: flex;
	width: 100%;
}

.ha-7523-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4B5563;
}

.ha-7523-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.ha-7523-container {
		flex-direction: column;
		height: auto;
		min-height: 500px;
	}
	
	.ha-7523-item {
		height: 80px;
		flex: none;
		min-height: 80px;
	}
	
	.ha-7523-item.active {
		height: auto;
		flex: 1;
		min-height: 200px;
	}
}