/*
 * profile-about.css — Toro Legal Marketing
 *
 * People CPT single (single-people.php). "About" section beneath the
 * cream profile hero. Two-column at desktop: section heading pinned
 * left, WYSIWYG prose right. Mirrors the heading-left / copy-right
 * rhythm of service-page-why and service-page-process.
 *
 * Surface is white to separate from the cream hero above it.
 * Built from spec (no Figma frame); copy is canonical.
 */

.tlm-profile-about {
  background: var(--color-white);
  /* 60/60 site-standard mobile section padding. */
  padding-block: var(--space-3xl);
}

.tlm-profile-about__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.tlm-profile-about__heading {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: var(--weight-regular);
  font-size: var(--text-h2-mobile);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-display);
  color: var(--color-navy);
}

/* --- Prose column --- */

.tlm-profile-about__body {
  color: var(--color-navy);
  font-size: var(--text-base);
}

.tlm-profile-about__body > :first-child {
  margin-top: 0;
}

.tlm-profile-about__body > :last-child {
  margin-bottom: 0;
}

.tlm-profile-about__body p {
  margin-block: 0 var(--space-md);
}

.tlm-profile-about__body p:last-child {
  margin-bottom: 0;
}

/* --- Desktop: heading left, prose right --- */

@media (min-width: 1024px) {
  .tlm-profile-about {
    padding-block: var(--space-4xl);
  }

  .tlm-profile-about__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: start;
    gap: var(--space-3xl);
  }

  .tlm-profile-about__heading {
    font-size: var(--text-h2);
  }

  .tlm-profile-about__body {
    font-size: var(--text-lg);
  }
}
