.health-tool,
.health-hub {
  display: grid;
  gap: 16px;
  margin: 0 auto 28px;
  max-width: 960px;
}

.health-panel,
.health-hub {
  border: 1px solid #d9e2dc;
  border-radius: 8px;
  background: #fbfdfb;
  padding: 18px;
}

.tool-kicker {
  margin: 0 0 6px;
  color: #35614b;
  font-size: 13px;
  font-weight: 700;
}

.health-tool h2,
.health-hub h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.25;
}

.field-grid,
.result-grid,
.tool-card-grid {
  display: grid;
  gap: 12px;
}

.field-grid label {
  display: grid;
  gap: 6px;
  color: #1f2a24;
  font-weight: 700;
}

.field-grid input,
.field-grid select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #b9c8bf;
  border-radius: 8px;
  background: #fff;
  color: #111814;
  font-size: 16px;
  line-height: 1.2;
  padding: 12px 11px;
}

.field-grid small {
  color: #607268;
  font-size: 13px;
  font-weight: 400;
}

.tool-error {
  min-height: 20px;
  margin: 10px 0 0;
  color: #b42318;
  font-size: 14px;
  font-weight: 700;
}

.result-grid {
  grid-template-columns: 1fr;
}

.result-grid div {
  border: 1px solid #dbe5df;
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.result-grid span {
  display: block;
  color: #5a6c62;
  font-size: 13px;
  margin-bottom: 6px;
}

.result-grid strong {
  display: block;
  color: #111814;
  font-size: 22px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.tool-disclaimer {
  border-left: 4px solid #2f6b4f;
  margin: 16px 0 0;
  padding: 10px 12px;
  background: #eef7f1;
  color: #23352b;
  font-size: 14px;
  line-height: 1.55;
}

.tool-disclaimer.strong,
.warning-panel .tool-disclaimer {
  border-left-color: #b42318;
  background: #fff1f0;
  color: #7a271a;
  font-weight: 700;
}

.hub-head p {
  margin: 0;
  color: #43554b;
  line-height: 1.65;
}

.tool-card-grid {
  margin-top: 16px;
}

.tool-card {
  border: 1px solid #d9e2dc;
  border-radius: 8px;
  background: #fff;
  color: #142019;
  display: grid;
  gap: 6px;
  padding: 16px;
  text-decoration: none;
}

.tool-card:hover {
  border-color: #2f6b4f;
}

.tool-card strong {
  font-size: 17px;
}

.tool-card span {
  color: #5a6c62;
  font-size: 14px;
  line-height: 1.45;
}

@media (min-width: 720px) {
  .health-tool {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    align-items: start;
  }

  .field-grid,
  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
