/* Young Bull Investors: book sales page */

.book-hero-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.book-hero-cover {
  justify-self: center;
}

.book-hero-cover picture,
.book-hero-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.book-pullquote {
  border-left: 3px solid var(--amber);
  padding: 4px 0 4px 24px;
  margin: 8px 0;
}

.book-pullquote p {
  font-family: var(--font-ui);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 10px !important;
}

.book-pullquote cite {
  font-style: normal;
  color: var(--muted);
  font-size: 14px;
}

.book-cta-row {
  margin-top: 24px;
}

.book-contents-list {
  list-style: none;
  columns: 2;
  column-gap: 32px;
  margin-bottom: 20px;
}

.book-contents-list li {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  color: var(--muted);
  line-height: 1.4;
  break-inside: avoid;
}

.book-contents-list li::before {
  content: '✓';
  flex-shrink: 0;
  color: var(--green);
  font-weight: 700;
}

.book-contents-more {
  font-family: var(--font-ui);
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 20px !important;
}

@media (max-width: 700px) {
  .book-hero-grid {
    grid-template-columns: 1fr;
  }

  .book-hero-cover {
    order: -1;
    max-width: 260px;
    margin: 0 auto;
  }

  .book-contents-list {
    columns: 1;
  }
}
