.health-check {
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid #26384c;
  border-bottom: 1px solid #26384c;
}

.health-overview {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.health-score-ring {
  width: 92px;
  height: 92px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0d1d2f 58%, transparent 60%),
    conic-gradient(#00ff88 calc(var(--health-score) * 1%), #26384c 0);
  direction: ltr;
}

.health-score-ring strong {
  color: #fff;
  font: 800 1.75rem/1 var(--font-en);
}

.health-score-ring span { margin-top: 0.2rem; color: #7890a8; font: 600 0.68rem/1 var(--font-en); }
.health-kicker { margin: 0 0 0.25rem; color: #00ff88; font: 800 0.7rem/1.2 var(--font-en); text-transform: uppercase; }
.health-heading h3 { margin: 0; color: #fff; font-size: 1.05rem; line-height: 1.55; }
.health-heading > p:last-child { margin: 0.3rem 0 0; color: #cbd5e1; font-size: 0.84rem; line-height: 1.65; }

.health-dimensions { display: grid; gap: 0.65rem; margin-top: 1rem; }
.health-dimension-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.3rem; color: #cbd5e1; font-size: 0.76rem; }
.health-dimension-head strong { color: #fff; font: 700 0.76rem/1 var(--font-en); }
.health-track { height: 6px; overflow: hidden; border-radius: 999px; background: #26384c; }
.health-track span { display: block; width: 0; height: 100%; border-radius: inherit; background: #00ff88; }
.health-dimension.is-limited .health-track span { background: #fbbf24; }
.health-dimension.is-poor .health-track span { background: #f87171; }

.health-action {
  margin: 1rem 0 0;
  padding-inline-start: 0.75rem;
  border-inline-start: 3px solid #00ff88;
  color: #dbe7f3;
  font-size: 0.84rem;
  line-height: 1.75;
}

.health-limit { margin: 0.7rem 0 0; color: #7890a8; font-size: 0.68rem; line-height: 1.65; }

@media (max-width: 420px) {
  .health-overview { grid-template-columns: 78px minmax(0, 1fr); gap: 0.8rem; }
  .health-score-ring { width: 78px; height: 78px; }
  .health-score-ring strong { font-size: 1.45rem; }
}
