/*========================================================
BOOKS PAGE — RESPONSIVE
Load this AFTER style.css / text.css / header.css / footer.css
so these rules win the cascade. Only link this file on
books.html — it targets classes (.books-hero, .book-section,
.book-card, .book-info, .hero-title) that belong to the
Books page.
========================================================*/

/*==========================
TABLET / LAPTOP (≤992px)
==========================*/

@media (max-width: 992px) {
  .books-hero {
    min-height: 420px;
    padding: 100px 20px 40px;
  }
}

/*==========================
TABLET / LARGE PHONE (≤768px)
==========================*/

@media (max-width: 768px) {
  .books-hero {
    min-height: 340px;
    padding: 90px 16px 30px;
  }

  .book-section {
    padding: 70px 0;
  }

  .book-card .col-lg-7 p {
    font-size: 1.05rem;
    line-height: 1.8;
    text-indent: 1.5em;
  }

  .book-card p:last-of-type {
    text-indent: 1.5em;
  }
}

/*==========================
PHONE (≤576px)
==========================*/

@media (max-width: 576px) {
  .books-hero {
    min-height: 280px;
    padding: 80px 14px 24px;
  }

  .book-section {
    padding: 50px 0;
  }

  .hero-title.drop-text span {
    font-size: clamp(2.2rem, 14vw, 3.2rem);
  }

  .book-card .col-lg-7 p {
    font-size: 0.95rem;
    text-indent: 1.2em;
  }

  .book-info div {
    padding: 10px 8px;
  }

  .book-info strong {
    font-size: 0.85rem;
  }

  .book-info span {
    font-size: 0.8rem;
  }

  h3 {
    font-size: 1.2rem;
  }
}
.book-section .col-lg-5 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-section .book-cover {
  display: block;
  margin: 0 auto;
}



/* FIX BOOKS HERO DESCRIPTION */
.books-hero .hero-description {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  white-space: normal !important;
  line-height: 1.5;
  margin-bottom: 8px;
}

.books-hero .hero-description span {
  display: inline !important;
  white-space: normal !important;
}