/* ============================================================
   SCHOOL PAGE: method, teacher, and classes info
   ============================================================ */

/* ---- Teacher feature: portrait + bio, side by side.
   Matches .prose's max-width (720px) so its left edge lines up with the
   prose text above and below it, instead of centering independently. ---- */
.teacher-feature {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-lg);
  align-items: start;
  max-width: 720px;
  margin: var(--space-xl) auto;
}
.teacher-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.teacher-photo img { width: 100%; display: block; }
.teacher-feature .prose { max-width: none; margin: 0; }

@media (max-width: 700px) {
  .teacher-feature { grid-template-columns: 1fr; }
  .teacher-photo { max-width: 320px; margin: 0 auto; }
}
