/*
 * about-approach.css — Toro Legal Marketing
 *
 * /about/ — "Our approach" section beneath the cream hero. Two-column
 * 1/2 : 1/2 grid at desktop: all copy (heading + narrative + CTA) on
 * the left, placeholder visual on the right. White surface to separate
 * from the cream hero above.
 *
 * Placeholder visual reuses the service-page treatment (navy-tint box,
 * faint Carbon image glyph) until a real asset lands.
 *
 * Built from spec (no Figma frame); copy is canonical.
 */

.tlm-about-approach {
  background: var(--color-white);
  padding-block: var(--space-3xl);
}

.tlm-about-approach__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* --- Copy column --- */

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

.tlm-about-approach__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);
  text-wrap: balance;
}

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

.tlm-about-approach__body p {
  margin: 0 0 var(--space-md);
  line-height: var(--leading-normal);
}

.tlm-about-approach__body p:last-child {
  margin-bottom: 0;
}

.tlm-about-approach__cta {
  align-self: flex-start;
}

/* --- Placeholder visual --- */

.tlm-about-approach__visual--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 728 / 618;
  border-radius: var(--radius-lg);
  background-color: var(--color-navy-tint);
  color: var(--color-navy-faint);
}

.tlm-about-approach__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

/* --- Tablet: body type bumps to 18/1.6 --- */

@media (min-width: 768px) {
  .tlm-about-approach__body p {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    letter-spacing: var(--tracking-tight);
  }
}

/* --- Desktop: copy left (1/2), visual right (1/2) --- */

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

  .tlm-about-approach__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-3xl);
  }

  .tlm-about-approach__heading {
    font-size: var(--text-h2);
  }
}
