.status-shell {
  width: min(980px, calc(100% - 1rem));
  margin: 0.7rem auto 0.9rem;
  display: grid;
  gap: 0.58rem;
}

.status-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
}

.status-link-button {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #eef2f8;
  color: #142843;
  padding: 0.55rem 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.status-hero {
  display: grid;
  gap: 0.35rem;
}

.status-state-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-badge {
  border-radius: 999px;
  padding: 0.24rem 0.56rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.status-operational {
  background: #e6f5ea;
  color: #1a6a34;
}

.status-degraded {
  background: #fff5df;
  color: #7a5a0a;
}

.status-maintenance {
  background: #edf5ff;
  color: #1a4f8f;
}

.status-outage {
  background: #ffeceb;
  color: #8d2a20;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.58rem;
}

.status-list {
  display: grid;
  gap: 0.34rem;
}

.status-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.48rem;
  display: grid;
  gap: 0.2rem;
}

.status-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
}

.status-item-meta {
  font-size: 0.82rem;
  color: #395579;
  line-height: 1.35;
}

.freshness-fresh {
  background: #e6f5ea;
  color: #1a6a34;
}

.freshness-warn {
  background: #fff5df;
  color: #7a5a0a;
}

.freshness-stale {
  background: #ffeceb;
  color: #8d2a20;
}

.freshness-unknown {
  background: #edf2f8;
  color: #435b78;
}

@media (max-width: 900px) {
  .status-grid {
    grid-template-columns: 1fr;
  }
}
