.alert-center {
  margin-bottom: 12px;
  border: 1px solid #e2d1cc;
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(192, 58, 50, 0.08) 0%, rgba(192, 58, 50, 0) 30%),
    linear-gradient(180deg, #fffdfc 0%, #fff7f5 100%);
  box-shadow: 0 14px 28px rgba(16, 32, 51, 0.05);
}

.alert-center-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.alert-center-eyebrow {
  color: #99645c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.alert-center-head h2 {
  margin: 6px 0 0;
  font-size: 24px;
  line-height: 1.12;
}

.alert-center-actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.alert-center-subtitle {
  margin-top: 8px;
  color: #6a7a89;
  font-size: 14px;
}

.alert-center-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.alert-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  border: 1px solid #e1e7ed;
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(16, 32, 51, 0.04);
}

.alert-card.tone-danger {
  border-color: #efc2be;
  background: linear-gradient(180deg, #fffefe 0%, #fff5f3 100%);
}

.alert-card.tone-amber {
  border-color: #f0ddb0;
  background: linear-gradient(180deg, #fffdf9 0%, #fff7e8 100%);
}

.alert-card.tone-green {
  border-color: #cae8d6;
  background: linear-gradient(180deg, #f8fdf9 0%, #eef9f1 100%);
}

.alert-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.alert-card-head-side {
  flex: 0 0 auto;
  display: grid;
  justify-items: end;
  gap: 6px;
}

.alert-card-title {
  color: #16324c;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.alert-card-summary {
  margin-top: 6px;
  color: #5f7285;
  font-size: 13px;
  line-height: 1.6;
}

.alert-card-count {
  flex: 0 0 auto;
  min-width: 38px;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f2f5f8;
  color: #16324c;
  font-size: 18px;
  font-weight: 800;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.alert-center-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid #d9e2ea;
  border-radius: 999px;
  background: #ffffff;
  color: #607284;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.alert-center-close:hover {
  border-color: #b9c7d4;
  background: #f7fafc;
}

.alert-card.tone-danger .alert-card-count {
  background: #fff0ee;
  color: #a33a33;
}

.alert-card.tone-amber .alert-card-count {
  background: #fff3dc;
  color: #9a6800;
}

.alert-card.tone-green .alert-card-count {
  background: #e5f6ed;
  color: #0f6a44;
}

.alert-card-rule {
  color: #8a6c66;
  font-size: 12px;
  font-weight: 700;
}

.alert-card-list {
  display: grid;
  gap: 8px;
}

.alert-card-item,
.alert-card-more {
  min-width: 0;
  padding: 9px 10px;
  border-radius: 10px;
  background: #f7fafc;
  color: #405467;
  font-size: 13px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.alert-card-more {
  color: #6a7b8d;
}

