/* ============================================
   MESAJLAR — extra styles op book-nav.css
   ============================================ */

.book-content h1 {
  text-align: center;
  margin-bottom: 8px;
}
.book-content .chapter-meta {
  text-align: center;
}
.book-content .chapter-author {
  text-align: center;
  margin-bottom: 64px;
}

/* Each mesaj: big gold number on the left, body on the right */
.mesaj {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--line-soft);
  align-items: flex-start;
}
.mesaj:first-of-type {
  border-top: none;
  padding-top: 0;
}

.mesaj-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -2px;
  font-feature-settings: "lnum";
  text-align: right;
  /* slight optical alignment with the first line of body text */
  margin-top: -8px;
}

.mesaj-body p {
  margin-bottom: 1em;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.75;
}
.mesaj-body p:last-child {
  margin-bottom: 0;
}

/* Mobile: stack number above body */
@media (max-width: 700px) {
  .mesaj {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 0;
  }
  .mesaj-num {
    font-size: 48px;
    text-align: left;
    margin-top: 0;
  }
  .mesaj-body p {
    font-size: 17px;
  }
}

/* Tablet: keep side-by-side but reduce number size */
@media (min-width: 701px) and (max-width: 980px) {
  .mesaj {
    grid-template-columns: 64px 1fr;
    gap: 24px;
  }
  .mesaj-num {
    font-size: 48px;
  }
}
