/* read.css
   Reading-page specific styles.
   Base typography and hero behavior still come from article.css.
*/

.book-read {
  max-width: 980px;
  margin: 0 auto;
}

/* hero stays aligned with the common article system, but reads cleaner */
.book-read .read-hero .article-card {
  max-width: 980px;
}

.book-read .book-kicker {
  margin: 0 0 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  opacity: 0.85;
  color: #d9b383;
}

/* reading intro */
.book-read .read-intro {
  margin-bottom: 1.5rem;
}

.book-read .read-note {
  max-width: 62ch;
  margin: 0 auto;
  padding: 0.9rem 1.1rem;
  border-left: 2px solid rgba(230, 192, 123, 0.4);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 10px 10px 0;
  opacity: 0.95;
}

/* the main reading column */
.book-read .read-chapter {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
}

.book-read .chapter-text {
  max-width: 62ch;
  margin: 0 auto;
  padding: 1.4rem 1.4rem;
  background: linear-gradient(rgba(245, 241, 232, 0.92), rgba(245, 241, 232, 0.92)),
  /*background-image:url('/templates/dobrodruhovia_EN/images/parchment_texture.png');*/
  background-size: cover;
  background-repeat: no-repeat;

  border-radius: 12px;
  border: 1px solid rgba(230, 192, 123, 0.25);
}

.book-read .chapter-text p {
  /*font-size: 1.08rem;*/
  font-size: 0.9rem;
  line-height: 1.95;
  margin-bottom: 1.2rem;
  text-align: left;
}

/* optional stronger book feel without hurting readability */
.book-read .chapter-text p:first-child::first-letter {
  float: left;
  font-size: 3.4rem;
  line-height: 0.9;
  padding-right: 0.2rem;
  padding-top: 0.15rem;
  color: #e6c07b;
}

/* continuation block */
.book-read .read-next {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 12, 0.35),
    rgba(10, 10, 12, 0.55)
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.book-read .read-next p {
  max-width: 62ch;
}

/* make buttons sit nicely in this page too */
.book-read .cta-group {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* keep the reading page calmer than the book detail page */
.book-read .article-saga {
  min-height: 28vh;
}

.book-read .article-saga .page-lead {
  max-width: 62ch;
}

/* mobile */
@media (max-width: 768px) {
  .book-read .chapter-text {
    padding: 1rem;
  }

  .book-read .chapter-text p {
    font-size: 1rem;
    line-height: 1.85;
  }

  .book-read .read-next {
    padding: 1.1rem;
  }

  .book-read .article-saga .article-card {
    margin: 0 1rem;
  }
}