.health-check {
  display: grid;
  grid-template-columns: minmax(270px, 0.85fr) minmax(340px, 1.15fr);
  column-gap: clamp(1.5rem, 4vw, 2.75rem);
  row-gap: 1.25rem;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid #26384c;
  border-bottom: 1px solid #26384c;
}

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

.health-score-ring {
  width: 106px;
  height: 106px;
  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 2rem/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.35rem; color: #00ff88; font: 800 0.72rem/1.2 var(--font-en); text-transform: uppercase; }
.health-heading h3 { margin: 0; color: #fff; font-size: 1.2rem; line-height: 1.55; }
.health-heading > p:last-child { margin: 0.45rem 0 0; color: #cbd5e1; font-size: 0.9rem; line-height: 1.75; }

.health-dimensions { display: grid; gap: 0.9rem; margin: 0; align-content: center; }
.health-dimension-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.45rem; color: #cbd5e1; font-size: 0.8rem; }
.health-dimension-head strong { color: #fff; font: 700 0.8rem/1 var(--font-en); }
.health-track { height: 8px; 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 {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.85rem 1rem;
  border-inline-start: 3px solid #00ff88;
  background: rgba(0, 255, 136, 0.04);
  color: #dbe7f3;
  font-size: 0.9rem;
  line-height: 1.8;
}

.health-limit { grid-column: 1 / -1; margin: -0.45rem 0 0; color: #7890a8; font-size: 0.72rem; line-height: 1.7; }

@media (max-width: 760px) {
  .health-check { grid-template-columns: 1fr; row-gap: 1.15rem; }
  .health-action,
  .health-limit { grid-column: auto; }
}

@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; }
}
