/* Page-scoped styles for healthcare-professionals.html.
   Consumes design tokens defined in styles.css :root.
   .stat-note and .trust-line previously declared here now live in styles.css as .note. */

/* Stat strip: research-context stats (not a hero-metric template — these are
   data shown in context on a professionals page, not SaaS hero metrics). */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(142, 166, 148, 0.15);
}

.stat-card__number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--deep-teal);
  font-family: var(--font-serif);
  line-height: 1.1;
}

.stat-card__label {
  font-size: 0.875rem;
  color: var(--charcoal);
  line-height: 1.5;
  margin-top: 0.4rem;
}

/* Audience chips: small pill-shaped tags grouped horizontally. Distinct from
   .no-camera-badge (single, prominent, with icon). */
.audience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.audience-chip {
  background: var(--sage-faint);
  color: var(--deep-teal);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Policy card: a compact variant of the system .card pattern. The h3 already
   names the policy (NICE, Home First, etc.), so the institutional signal
   comes from content, not from a coloured stripe. */
.policy-card {
  background: var(--white);
  border: 1px solid rgba(142, 166, 148, 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.policy-card h3 {
  color: var(--deep-teal);
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.policy-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--charcoal);
}

.policy-card blockquote {
  margin: var(--space-md) 0 0;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Commissioning callout: tinted teal panel for the "commissioning conversation"
   block. */
.commissioning-box {
  background: rgba(18, 61, 69, 0.04);
  border: 1px solid rgba(18, 61, 69, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}

.commissioning-box h3 {
  color: var(--deep-teal);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.commissioning-box p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Collapsible references list (uses native <details>). */
.references-section {
  margin-top: var(--space-md);
}

.references-section summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--deep-teal);
  font-size: 0.9375rem;
  padding: var(--space-sm) 0;
}

.references-section summary:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.references-section ol {
  padding-left: var(--space-lg);
  margin-top: 0.75rem;
}

.references-section li {
  font-size: 0.875rem;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.references-section a {
  color: var(--deep-teal);
}

/* Decorative checkmark icon (not text). */
.icon-check {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: var(--space-sm);
  vertical-align: middle;
  color: var(--sage);
}

/* Sensor list: bullet list with sage dot markers. */
.sensor-list {
  list-style: none;
  padding: 0;
}

.sensor-list li {
  padding: 0.4rem 0;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
}

.sensor-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: var(--radius-full);
  margin-right: 0.75rem;
  flex-shrink: 0;
}
