.health-profile-show-container {
  max-width: 42rem; /* Note: bespoke value */
  margin-inline: auto;
}

.health-profile-show-panel { margin-bottom: var(--spacing-16); }
.health-profile-show-back  { margin-top: var(--spacing-16); }

.health-profile-show-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-24);
}

.health-profile-show-title {
  font-size: var(--font-size-24);
  line-height: 2rem;
  font-weight: var(--font-weight-700);
  color: var(--text-primary);
}

.health-profile-show-edit-button,
.health-profile-show-empty-button {
  font-size: var(--font-size-14);
  line-height: 1.25rem;
  background-color: var(--background-surface-2);
  color: var(--text-primary);
  padding-block: var(--spacing-8);
  border-radius: var(--corner-radius-sm);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;

  &:hover { background-color: var(--background-surface-2); }
}
.health-profile-show-edit-button  { padding-inline: var(--spacing-16); }
.health-profile-show-empty-button { padding-inline: var(--spacing-24); }

.health-profile-show-section-label {
  font-size: var(--font-size-14);
  line-height: 1.25rem;
  font-weight: var(--font-weight-600);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-12);
}

.health-profile-show-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-8);
}

.health-profile-show-pill {
  display: inline-block;
  font-size: var(--font-size-14);
  line-height: 1.25rem;
  background-color: var(--background-surface-2);
  color: var(--text-primary);
  padding-inline: var(--spacing-12);
  padding-block: var(--spacing-4);
  border-radius: var(--corner-radius-full);
}
html.theme-dark .health-profile-show-pill {
  background-color: color-mix(in oklab, var(--color-pink-800) 30%, transparent);
  color: var(--text-primary);
}

.health-profile-show-sex-meta {
  color: var(--text-tertiary);
}

.health-profile-show-empty {
  background-color: var(--background-surface-1);
  border-radius: var(--corner-radius-md);
  border-width: var(--stroke-weight-1);
  border-style: solid;
  border-color: var(--border-default);
  padding: var(--spacing-32);
  text-align: center;
}

.health-profile-show-empty-text { margin-bottom: var(--spacing-16); }
