/* Map + Insights Grid */
.map-insights-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .map-insights-grid {
        grid-template-columns: 1fr;
    }
}

/* Strategic Insights Card (Flat & Modern) */
.insights-card {
    background-color: var(--card-bg);
    /* Use standard card background */
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    /* Removed glow effects */
}

.insights-card h2 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    /* Use accent color */
    letter-spacing: 0.5px;
    font-weight: 700;
}

.insight-item {
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* keep subtle separator */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insight-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.insight-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.insight-value {
    color: hsl(var(--foreground));
    font-weight: 700;
    font-size: 1.1rem;
    text-align: right;
}

.insight-value.highlight {
    color: hsl(var(--accent));
}

.insight-value.bottom-perf {
    color: hsl(var(--destructive));
    /* Red for bottom performer? or just text color */
}