/* aeo-audit: aeo-dashboard-insights — auto-generated insight prose card.
 * Full-width "💡 …" card. Soft brand-tinted background to differentiate
 * from the gauge / quick-stats card chrome.
 */

.aeo-insights {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background-color: rgba(126, 58, 242, 0.08);
    border: 1px solid rgba(126, 58, 242, 0.18);
    border-left-width: 4px;
    border-left-color: var(--bg-primary, #7e3af2);
    border-radius: 0.75rem;
}
.dark .aeo-insights {
    background-color: rgba(126, 58, 242, 0.14);
    border-color: rgba(126, 58, 242, 0.32);
}

.aeo-insights__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background-color: var(--bg-primary, #7e3af2);
    color: #ffffff;
    font-size: 1.125rem;
}

.aeo-insights__body {
    flex: 1 1 auto;
    min-width: 0;
}
.aeo-insights__title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bg-primary, #7e3af2);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.aeo-insights__text {
    color: rgb(31 41 55);
    font-size: 0.95rem;
    line-height: 1.55;
}
.dark .aeo-insights__text {
    color: rgb(229 231 235);
}
