.health-alert {
    background: var(--color-surface);
    border: 1px solid var(--color-warning);
    border-left: 4px solid var(--color-warning);
    border-radius: var(--radius);
    padding: var(--sp-3) var(--sp-4);
    margin-bottom: var(--sp-4);
}
.health-alert--crit {
    border-color: var(--color-danger);
    border-left-color: var(--color-danger);
}
.health-alert__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-2);
}
.health-alert__title {
    color: var(--color-warning);
    font-size: var(--fs-base);
}
.health-alert--crit .health-alert__title { color: var(--color-danger); }
.health-alert__close {
    color: var(--color-text-dim);
    font-size: 1.25rem;
    line-height: 1;
}
.health-alert__list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
}
.health-alert__item {
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
    padding-left: var(--sp-3);
    border-left: 2px solid currentColor;
}
.health-alert__item--warn { color: var(--color-warning); }
.health-alert__item--crit { color: var(--color-danger); }
