/* The book jackets are the collection's primary visual surface. */
.book-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 48px 25px;
}
.book-card { border: 0; min-width: 0; }
.book-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 0;
  gap: 21px;
}
.book-cover {
  aspect-ratio: 2 / 3;
  background: #23241f;
  overflow: hidden;
}
.book-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter .2s;
}
.book-link:hover .book-cover img { filter: brightness(1.08); }
.book-card-copy { flex: 1; display: flex; flex-direction: column; }
.book-category {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 11px;
  font-size: .75rem;
  letter-spacing: .025em;
  line-height: 1.5;
}
.book-number { padding: 0; font-size: .75rem; }
.book-card-heading { display: flex; justify-content: space-between; gap: 8px; }
.book-card h3 { font-size: 1.3rem; font-weight: 500; line-height: 1.2; margin-bottom: 12px; }
.book-arrow { font-size: 1.2rem; flex: 0 0 auto; }
.book-description { font-size: 1rem; line-height: 1.55; margin-bottom: 22px; }
.book-read { font-size: .875rem; margin-top: auto; }
.collection-note { margin-top: 39px; }
.about-scene { margin-top: 36px; }
.about-scene img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.closing { padding-top: 72px; padding-bottom: 72px; }
.closing-scene { display: grid; position: relative; isolation: isolate; overflow: hidden; }
.closing-scene > img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 500px;
  max-height: 680px;
  object-fit: cover;
}
.closing-content {
  grid-area: 1 / 1;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 65px 35px;
  background: linear-gradient(180deg, rgba(13,14,12,.36), rgba(13,14,12,.79));
}
.closing .eyebrow { color: #e8d6b8; }
.closing blockquote { color: #fff5e2; text-wrap: balance; }
.closing .text-link { color: #fff5e2; }
.closing .text-link:hover { color: var(--accent); }
.reader-book-heading { display: grid; grid-template-columns: 188px minmax(0, 1fr); gap: 36px; align-items: center; }
.reader-cover { display: block; width: 100%; height: auto; aspect-ratio: 2 / 3; object-fit: contain; }
.reader-book-heading h1 { font-size: clamp(2.1rem, 4.1vw, 3.7rem); margin-top: 19px; }
.reader-book-heading .reader-subtitle { font-size: 1.0625rem; margin-top: 18px; }
.reader-book-heading .eyebrow { line-height: 1.6; }
@media (max-width: 1199px) {
  .book-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 26px; }
  .book-card h3 { font-size: 1.5rem; }
}
@media (max-width: 800px) {
  .book-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 24px; }
  .closing-scene > img { min-height: 420px; }
  .closing-content { padding: 48px 25px; }
  .reader-book-heading { grid-template-columns: 150px minmax(0, 1fr); gap: 26px; }
}
@media (max-width: 520px) {
  .book-grid { column-gap: 18px; row-gap: 35px; }
  .book-link { gap: 16px; }
  .book-category { display: block; font-size: .75rem; }
  .book-number { padding-right: 5px; }
  .book-card h3 { font-size: 1.2rem; }
  .book-card-heading { gap: 4px; }
  .book-arrow { font-size: 1.125rem; }
  .book-description { font-size: 1rem; line-height: 1.5; margin-bottom: 18px; }
  .book-read { font-size: .875rem; }
  .about-scene { margin-top: 28px; }
  .closing { padding-block: 42px; }
  .closing-scene > img { min-height: 390px; }
  .closing-content { padding: 34px 20px; }
  .closing .eyebrow { font-size: .75rem; line-height: 1.6; }
  .closing blockquote { font-size: 2rem; }
  .closing .text-link { font-size: .875rem; line-height: 1.6; }
  .closing .text-link span { padding-left: 7px; }
  .reader-book-heading { grid-template-columns: 106px minmax(0, 1fr); gap: 20px; align-items: start; }
  .reader-book-heading h1 { font-size: 2rem; margin-top: 11px; }
  .reader-book-heading .reader-subtitle { font-size: 1rem; margin-top: 13px; }
  .reader-book-heading .eyebrow { font-size: .75rem; }
}
@media (max-width: 350px) {
  .book-grid { grid-template-columns: minmax(0, 1fr); }
  .book-card h3 { font-size: 1.6rem; }
  .reader-book-heading { grid-template-columns: minmax(0, 1fr); }
  .reader-cover { max-width: 155px; }
}
