.blhp-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;
}

.blhp-content {
    display: flex;
    gap: 12px;
    align-items: stretch;
	width: 100%;
}

.blhp-image {
    width: 100%;
    max-width: 150px;
    flex-shrink: 0;
}

.blhp-image img {
    width: 100%;
    height: 100%;       /* match content height */
    object-fit: cover;  /* crop properly */
    border-radius: 8px;
    display: block;
}

.blhp-text {
    flex: 1;
}

.blhp-popup h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
}

.blhp-popup p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 8px;
    opacity: 0.9;
}

.blhp-more {
    font-size: 14px;
    text-decoration: none;
}

.blhp-more:hover {
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .blhp-content {
        flex-direction: column;
    }

    .blhp-image img {
        width: 100%;
        height: auto;
    }
}
