.book-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 64px;
}

.book-stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0 32px;
}

.book-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rounded);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--glow-accents);
}

.book-stat strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary);
  margin-bottom: 6px;
}

.book-stat span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-hero-band {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  height: 180px;
  background-image:
    linear-gradient(90deg, rgba(11, 11, 11, 0.88) 0%, rgba(11, 11, 11, 0.55) 50%, rgba(11, 11, 11, 0.88) 100%),
    url("/images/decorative/decor_6.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.book-hero-band h1 {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  text-align: center;
  padding: 0 24px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
}

.book-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.book-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.book-col p {
  font-size: 15px;
  color: var(--muted);
  line-height: var(--friendly);
}

.book-col h2 {
  font-size: 1.05rem;
  color: var(--text);
  margin-top: 8px;
  padding: 8px 16px;
  background: rgba(250, 204, 21, 0.08);
  border-radius: var(--pill);
  border: 1px solid rgba(250, 204, 21, 0.25);
  display: inline-block;
  align-self: flex-start;
}

.book-checklist {
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--soft-curves);
  padding: 20px 24px;
  margin-top: 8px;
}

.book-checklist li {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0 6px 22px;
  position: relative;
}

.book-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: var(--pill);
}

@media (max-width: 768px) {
  .book-stat-band {
    grid-template-columns: 1fr;
  }

  .book-split {
    grid-template-columns: 1fr;
  }

  .book-hero-band {
    height: 140px;
  }
}

@media (max-width: 375px) {
  .book-page {
    overflow-x: hidden;
    padding-left: 16px;
    padding-right: 16px;
  }

  .book-hero-band {
    height: 120px;
  }
}
