/* ==========================================================================
   About page — page-specific styles.
   Loaded after design-system.css and homepage.css; reuses their tokens and
   shared components (disclaimer, placeholder-note, botanical-frame,
   credentials-list, footer, hero-ctas) rather than redefining them.
   Prototype only — not committed, not deployed.
   ========================================================================== */

/* Same simple bulleted-list pattern already defined per-page in
   nutrition.css and shop.css — redefined here rather than cross-loading
   another page's stylesheet for one small component. */
.fit-list {
  list-style: none;
  margin: 0 0 var(--space-5) 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .fit-list { grid-template-columns: 1fr 1fr 1fr; column-gap: var(--space-5); }
}
.fit-list li {
  position: relative;
  padding-left: 1.3em;
  font-size: 16px;
}
.fit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}
.fit-list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-forest);
  margin-bottom: var(--space-1);
}
