.lcho-popup {
	position: absolute;
	max-width: 400px;
	color: #fff;
	padding: 14px;
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
	z-index: 99999;
	font-family: system-ui, sans-serif;
	pointer-events: auto;
	box-sizing: border-box;
}

.lcho-content {
	display: flex;
	gap: 12px;
	align-items: stretch;
	width: 100%;
}

.lcho-image {
	width: 100%;
	max-width: 150px;
	flex-shrink: 0;
}

.lcho-image img {
	width: 100%;
	height: 100%; /* match content height */
	object-fit: cover; /* crop properly */
	border-radius: 8px;
	display: block;
}

.lcho-text {
	flex: 1;
}

.lcho-popup h4 {
	margin: 0 0 6px;
	font-size: 18px;
	font-weight: 600;
}

.lcho-popup p {
	font-size: 14px;
	line-height: 1.5;
	margin: 0 0 8px;
	opacity: 0.9;
}

.lcho-more {
	font-size: 14px;
	text-decoration: none;
}

.lcho-more:hover {
	text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
	.lcho-content {
		flex-direction: column;
	}

	.lcho-image img {
		width: 100%;
		height: auto;
	}
}
