/* Shared book page component styles */
.book-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}
.book-cover {
  text-align: center;
}
.book-cover img {
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  display:block;
  margin-inline: auto;
}

.pub-info {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted, #555);
}
.book-details h2 { margin-top: 0; }
.book-details .summary p { margin-bottom: 0.75rem; }

blockquote {
  font-style: italic;
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 3px solid rgba(0,0,0,0.08);
  color: #333;
  background: rgba(0,0,0,0.01);
  border-radius: 4px;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

/* Full-width reviews area (no different background color) */
.reviews-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw; /* pull the section out of the centered main container */
  margin-right: -50vw;
  padding: 2.5rem 0;
  box-sizing: border-box;
}

.reviews-full .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.reviews-full h2 { margin-top: 0; }

.reviews-full blockquote {
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-1);
  font-style: italic;
  color: #222;
}

.reviews-full .byline {
  margin-top: .75rem;
  font-weight: 700;
  font-style: normal;
}

/* Responsive */
@media (max-width: 780px) {
  .book-layout { grid-template-columns: 1fr; gap: 1rem; }
  .book-cover img { max-width: 280px; }
  .buy-btn { width: auto; }
}