/**
 * Layer 135: Editorial Insights Styles
 * (Extensions for the AI Assistant Panel)
 */

.insight-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
    border-left: 3px solid #cbd5e1;
    font-family: 'Inter', sans-serif;
}

.insight-card .icon {
    font-size: 1.2rem;
}

.insight-card .msg {
    flex: 1;
}

.insight-card strong {
    display: block;
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 4px;
}

.insight-card p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
}

.insight-card button {
    margin-top: 8px;
    padding: 4px 8px;
    font-size: 0.75rem;
    border: 1px solid #cbd5e1;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    color: #475569;
}

.insight-card button:hover {
    border-color: #6366f1;
    color: #6366f1;
}

/* Variants */
.insight-card.warning {
    background: #fffbeb;
    border-color: #f59e0b;
}

.insight-card.success {
    background: #f0fdf4;
    border-color: #10b981;
}

.insight-card.tip {
    background: #eff6ff;
    border-color: #3b82f6;
}

/* Scroll Marker */
.insight-scroll-marker {
    position: absolute;
    left: 0;
    width: 100%;
    border-top: 2px dashed #f59e0b;
    color: #f59e0b;
    font-weight: 700;
    padding: 5px 20px;
    background: rgba(245, 158, 11, 0.1);
    pointer-events: none;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.5s;
}

.insight-scroll-marker.fade-out {
    opacity: 0;
}