:host { display: block; } .alert-feed__header { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--space-3); margin-bottom: var(--space-3); } .alert-feed__title { margin: 0; font-size: var(--font-size-lg); font-weight: 600; } .alert-feed__count { margin: 0.15rem 0 0; font-size: var(--font-size-sm); color: var(--color-text-muted); } .alert-feed__filters { display: flex; flex-wrap: wrap; gap: var(--space-2); } .alert-feed__filter { display: flex; flex-direction: column; min-width: 10rem; .form-label { margin-top: 0; } } .alert-feed__banner { display: block; margin-bottom: var(--space-3); } .alert-feed__state { margin: 0 0 var(--space-3); font-size: var(--font-size-sm); color: var(--color-text-muted); } .alert-feed__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-2); } .alert-feed__item { display: flex; gap: var(--space-3); padding: var(--space-2) var(--space-3); border-radius: var(--radius-md); background: var(--color-surface); border: 1px solid var(--color-border-light); border-left: 4px solid var(--color-border); } .alert-feed__item--medium { border-left-color: var(--color-warning); background: var(--color-warning-bg); .alert-feed__icon { color: var(--color-warning-text); } } .alert-feed__item--high { border-left-color: var(--color-danger); background: var(--color-danger-bg); .alert-feed__icon { color: var(--color-danger); } } .alert-feed__item--critical { border-left-color: var(--color-critical); background: var(--color-danger-bg); .alert-feed__icon { color: var(--color-critical); } } .alert-feed__icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: var(--color-surface); color: var(--color-text-muted); font-size: var(--font-size-lg); box-shadow: var(--shadow-card); } .alert-feed__body { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; } .alert-feed__meta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-2); font-size: var(--font-size-xs); color: var(--color-text-muted); } .alert-feed__type { font-weight: 600; color: var(--color-text); } .alert-feed__message { margin: 0; font-size: var(--font-size-sm); } .alert-feed__values { display: flex; gap: var(--space-2); margin: 0; font-size: var(--font-size-xs); color: var(--color-text-muted); strong { color: var(--color-text); } } .alert-feed__more { display: inline-block; margin-top: var(--space-3); }