/* =========================================================
   Shared shell for the secondary pages (about, legal, etc.)
   Rides on styles.css for tokens, nav and footer.
   ========================================================= */

.page-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 90px 24px 0;
}

.page-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
}

.page-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--ink);
  max-width: 900px;
}

.page-lead {
  margin-top: 22px;
  max-width: 640px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--gray);
}

.page-body {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 24px 40px;
}

.prose { max-width: 720px; }

.prose h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  color: var(--ink);
  margin: 44px 0 14px;
}
.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin: 28px 0 10px;
}

.prose p,
.prose li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray);
}
.prose p { margin-bottom: 16px; }

.prose ul { list-style: none; margin: 0 0 18px; }
.prose ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
}

.prose a { color: var(--purple); }
.prose a:hover { text-decoration: underline; }

.prose strong { color: var(--ink); font-weight: 600; }

.page-updated {
  font-size: 14px;
  color: var(--gray-soft);
  margin-bottom: 34px;
}

/* Status board */
.status-list { max-width: 720px; display: flex; flex-direction: column; gap: 12px; }
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
}
.status-name { font-size: 16px; color: var(--ink); }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1a8a4a;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1a8a4a;
}

/* Simple cards used on About / Careers */
.page-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.page-card {
  padding: 30px 28px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
}
.page-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 10px;
}
.page-card p { font-size: 15px; line-height: 1.65; color: var(--gray); }

.page-cta {
  margin-top: 44px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .page-title { font-size: 42px; }
  .page-cards { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .page-hero { padding-top: 56px; }
  .page-title { font-size: 32px; }
  .page-lead { font-size: 17px; }
  .page-body { padding-top: 40px; }
  .prose h2 { font-size: 24px; }
  .status-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Case study hero image */
.cs-media {
  max-width: 900px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  margin-bottom: 46px;
  background: #f2f2f2;
}
.cs-media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 620px) {
  .cs-media { border-radius: 12px; margin-bottom: 32px; aspect-ratio: 16 / 9; }
}
