/* AcademicCrew — Shared page-hero component
 * Used by the members archive and courses archive pages.
 * Depends on --acc-* custom properties defined in the consuming archive CSS.
 */

/* ── Page hero ───────────────────────────────────────────────────── */
.acc-ph {
  padding: 56px 0 32px;
  margin-bottom: 0;
}
.acc-ph-eyebrow {
  font-family: var(--acc-font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acc-accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.acc-ph-bar { width: 26px; height: 2px; background: currentColor; flex-shrink: 0; }
.acc-ph-title {
  font-family: var(--acc-font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--acc-primary);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 12px;
}
.acc-ph-lede {
  font-size: 17px;
  color: var(--acc-muted);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 640px) {
  .acc-ph { padding: 36px 0 24px; }
  .acc-ph-title { font-size: 38px; }
  .acc-ph-lede  { font-size: 15px; }
}

/* ── Stats band ──────────────────────────────────────────────────── */
.acc-ph-stats {
  display: flex;
  gap: 64px;
  padding: 24px 0;
  border-top: 1px solid #e3e7ee;
  border-bottom: 1px solid #e3e7ee;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.acc-ph-stat { display: flex; flex-direction: column; }
.acc-ph-stat-n {
  font-family: var(--acc-font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--acc-primary);
  line-height: 1;
}
.acc-ph-stat-l {
  font-family: var(--acc-font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8893a6;
  margin-top: 6px;
}
@media (max-width: 640px) {
  .acc-ph-stats { gap: 32px; }
  .acc-ph-stat-n { font-size: 32px; }
}
