.insight-card {
    border: 1px solid #ddd;
    padding: 16px;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background: #fff;
}
.insight-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.insight-desc {
    margin-bottom: 10px;
}
.view-more-insight {
    background: #0073aa;
    color: #fff;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#insight-popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
#insight-popup {
    background: #fff;
    padding: 20px;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
    text-align: center;
}
#popup-image-slider {
    position: relative;
}
#popup-image {
    width: 100%;
    height: auto;
    margin-top: 10px;
}
.prev-img, .next-img {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
}
.prev-img { left: 0; }
.next-img { right: 0; }
.popup-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
}
