/**Layer 121: Trending Insights*/

.insights-card {
    background: linear-gradient(to bottom right, #ffffff, #f0f9ff);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.1);
    font-family: 'Inter', sans-serif;
    max-width: 400px;
}

.ins-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0f2fe;
}

.ins-header h3 {
    margin: 0;
    color: #0369a1;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 800;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #0ea5e9;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(14, 165, 233, 0.4);
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(14, 165, 233, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
}

.ins-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ins-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    animation: slideIn 0.3s ease-out;
}

.ins-metric {
    background: #e0f2fe;
    color: #0284c7;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    min-width: 50px;
    text-align: center;
}

.ins-text {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.4;
}

.ins-text strong {
    color: #0c4a6e;
}

.ins-empty {
    color: #94a3b8;
    font-style: italic;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}