/* ── SHARED INTERIOR-PAGE STYLES ─────────────────────────────── */

/* Split content (text + image) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.split__media--tall img { aspect-ratio: 3 / 4; }
.split__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.18;
  margin-top: 0.6rem;
}
.split__text { color: var(--text); line-height: 1.8; margin-top: 1rem; }
.split__text p + p { margin-top: 1rem; }
.split__text .muted { color: var(--muted); }

/* Prose blocks */
.prose { max-width: 70ch; }
.prose p { color: var(--text); line-height: 1.8; margin-bottom: 1.1rem; }
.prose p .muted { color: var(--muted); }
.prose h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2rem 0 0.6rem;
}

/* Value / definition cards */
.value-card { border-left: 3px solid var(--brand-accent); padding: 0.25rem 0 0.25rem 1.25rem; }
.value-card__title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; }
.value-card__text { font-size: 0.95rem; color: var(--muted); line-height: 1.65; }

/* Numbered steps (process) */
.steps { display: grid; gap: 1.25rem; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-sm);
}
.step__num {
  counter-increment: step;
  width: 46px; height: 46px;
  flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--brand-accent-soft);
  color: var(--brand-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
}
.step__num::before { content: counter(step); }
.step__title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 0.45rem; }
.step__text { color: var(--muted); line-height: 1.7; font-size: 0.975rem; }
.step__text .checklist { margin-top: 0.85rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.team-card__avatar {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}
.team-card__name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--ink); }
.team-card__role { font-size: 0.875rem; font-weight: 600; color: var(--brand-accent); margin: 0.25rem 0 1rem; letter-spacing: 0.01em; }
.team-card__bio { color: var(--muted); line-height: 1.75; font-size: 0.975rem; }

/* Mixed-width layouts */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.aside-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem;
}
.aside-card__title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 1rem; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 2.25rem; }
  .split--reverse .split__media { order: -1; }
  .team-grid { grid-template-columns: 1fr; }
  .cols-2 { grid-template-columns: 1fr; gap: 1.75rem; }
  .step { padding: 1.4rem; gap: 1rem; }
}
