/*
 * page-about.css
 * Independent clean-room implementation from a written spec.
 * The standalone About page's prose "story" block, plus a generic
 * page-about grid wrapper.
 */

.ocf-page-about {
  background: var(--ocf-bg);
}

.ocf-page-about__section {
  gap: 1.5rem;
  display: grid;
}

.ocf-page-about__grid {
  grid-template-columns: 1fr;
  display: grid;
}

.ocf-about-story {
  background: var(--ocf-bg);
}

.ocf-about-story.section-padding {
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.ocf-about-story__inner {
  width: 100%;
}

.ocf-about-story__content {
  gap: 1.15rem;
  display: grid;
  color: var(--ocf-body);
  font-size: var(--font-body-size);
  line-height: 1.72;
}

.ocf-about-story + .ocf-about.section-padding {
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.ocf-about-story__content > * {
  margin: 0;
}

.ocf-about-story__content h2 {
  color: var(--ocf-heading);
  margin-top: 0.9rem;
  font-family: var(--ocf-font-heading), system-ui, sans-serif;
  font-size: var(--font-h2-size);
  line-height: 1.12;
}

.ocf-about-story__content h2:first-child {
  margin-top: 0;
}

.ocf-about-story__content strong,
.ocf-about-story__content b {
  font-weight: var(--font-weight-bold);
  color: var(--ocf-heading);
}

.ocf-about-story__content a {
  text-decoration: underline;
  color: var(--ocf-primary);
  text-underline-offset: 0.18em;
}

.ocf-about-story__content ul,
.ocf-about-story__content ol {
  gap: 0.6rem;
  display: grid;
  margin: 0.25rem 0 0;
  padding-left: 1.25rem;
}

@media (max-width: 900px) {
  .ocf-page-about__grid {
    grid-template-columns: 1fr;
  }
}
