/*
 * Path:        public_html/assets/css/page_about.css
 * Filename:    page_about.css
 * Project:     revisualized.com
 * Description: About page layout additions. The about block itself is the
 *              shared component in main.css; this file adds the masthead,
 *              section rhythm, the work history list, and the training
 *              list. Existing verified tokens only.
 * Status:      production
 * Revision:    9
 * Updated:     2026-08-14
 * Included by: about/index.php via $page_stylesheet (Contract 1)
 *
 * ---------------------------------------------------------------------
 * REVISION 9: .about_page__lede removed.
 * ---------------------------------------------------------------------
 *
 * The lede paragraph introduced in Revision 5 was rejected three times by
 * the owner across Revisions 10, 13, and 14. about/index.php Revision 15
 * removes the element; the rule is deleted here rather than left as dead
 * CSS. Do not reintroduce a lede treatment on this page.
 *
 * NO max-width anywhere in this file. Revision 5 introduced a 68ch cap
 * without approval; Revision 7 removed it. This page sizes the same as
 * every other section on the site. A page-width container is a site-wide
 * decision belonging in main.css, not a per-page override here.
 *
 * The .about_page .about__copy color override is load bearing. main.css
 * sets .about__copy to --color-text-muted, correct on the homepage where
 * the block is secondary, which left the entire About page at lower
 * contrast than every article (.content_body uses --color-page-text).
 */

/* ============================================================
   MASTHEAD
============================================================ */

.about_page__masthead {
  margin-bottom: 40px;
}

.about_page_heading {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-page-text);
  margin-bottom: 20px;
}

.about_page__identity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--color-surface-card);
}

.about_page__identity_name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-page-text);
}

.about_page__identity_title {
  font-size: 0.75rem;
  color: var(--color-text-label);
  margin-top: 2px;
}

/* ============================================================
   BODY COPY
============================================================ */

.about_page .about__copy {
  font-size: var(--text-body);
  line-height: 1.75;
  color: var(--color-page-text);
}

.about_page .about__copy p { margin-bottom: 16px; }

.about_page .about__copy h2 {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-page-text);
  margin: 40px 0 12px;
}

/* ============================================================
   WORK HISTORY
============================================================ */

.about_history {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.about_history__item {
  padding-left: 16px;
  border-left: 2px solid var(--color-border-badge);
  margin-bottom: 24px;
}

.about_history__item:last-child { margin-bottom: 0; }

.about_page .about__copy .about_history__role {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-page-text);
  margin-bottom: 2px;
}

.about_page .about__copy .about_history__org {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.about_history__dates {
  display: inline-block;
  font-weight: 400;
  color: var(--color-text-label);
  margin-left: 6px;
}

.about_page .about__copy .about_history__note {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .about_history__dates { display: block; margin-left: 0; margin-top: 2px; }
}

/* ============================================================
   TRAINING LIST
============================================================ */

.about_credentials {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.about_credentials li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.about_credentials li:last-child { margin-bottom: 0; }

.about_credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 1px;
}
