/* ============================================
 * Book — About the author (Figma 849:4461)
 *
 * White surface, two-column. Mobile: photo on top, copy below.
 * Desktop (≥1024px): bio left, photo right (cream rounded card,
 * fixed 590px), vertically centred.
 * ============================================ */

.tlm-book-author {
  padding-block: var(--space-section-y-mobile);
  background-color: var(--color-white);
  color: var(--color-text-on-light);
}

.tlm-book-author__inner {
  display: flex;
  flex-direction: column-reverse;
  gap: var(--space-lg);
  align-items: center;
}

.tlm-book-author__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  width: 100%;
}

.tlm-book-author__headings {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.tlm-book-author__eyebrow {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  line-height: var(--leading-relaxed);
  letter-spacing: var(--tracking-button);
  text-transform: uppercase;
  color: var(--color-pink-stop);
}

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

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

.tlm-book-author__prose p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  letter-spacing: var(--tracking-tight);
  color: var(--color-navy-muted);
}

.tlm-book-author__visual {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-cream);
}

.tlm-book-author__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ============================================
 * TABLET (≥768px)
 * ============================================ */

@media (min-width: 768px) {
  .tlm-book-author__prose p {
    font-size: var(--text-lg);
  }
}

/* ============================================
 * DESKTOP (≥1024px)
 * ============================================ */

@media (min-width: 1024px) {
  .tlm-book-author {
    padding-block: 100px;
  }

  .tlm-book-author__inner {
    flex-direction: row-reverse;
    align-items: center;
    gap: var(--space-4xl);
  }

  .tlm-book-author__body {
    flex: 1 1 0;
    min-width: 0;
  }

  .tlm-book-author__name {
    font-size: var(--text-h2);
  }

  .tlm-book-author__visual {
    flex: 0 0 auto;
    width: 590px;
    height: 606px;
  }

  .tlm-book-author__image {
    height: 100%;
  }
}
