/* =====================================================
   HAWTHORNE PUBLISHERS — testimonials.css
   Page: Testimonials (testimonials.php)
===================================================== */

/* ── HERO ── */
.testi-hero {
  background: linear-gradient(rgba(20,35,18,.82), rgba(20,35,18,.82)),
              url('../images/books_cta.png') center/cover no-repeat;
  padding: 8.5rem 0 3.5rem;
  text-align: center;
}
.testi-hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(40,167,69,.18);
  border: 1px solid rgba(40,167,69,.4);
  border-radius: 50px;
  padding: .3rem 1rem;
  font-size: .72rem;
  color: #7fe396;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.testi-hero-stars { color: #f59e0b; }
.testi-hero-h {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  max-width: 780px;
  margin: 0 auto 1rem;
}
.testi-hero-sub {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.testi-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.testi-stat-num {
  font-family: var(--ff-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.testi-stat-label {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: .2rem;
}

/* ── REVIEWS SECTION ── */
.testi-reviews-section {
  background: var(--c-peach-bg);
  padding: 4rem 0 3rem;
}

/* Masonry-style review cards */
.hp-testi-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hp-testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

/* Columns layout */
.testi-cols {
  columns: 3;
  gap: 1.5rem;
  /* column-gap: 1.2rem; */

  .hp-testi-card {
    margin: 1rem 0;

    &:nth-child(1) { margin-top: 0;}
  }
}
@media (max-width: 991px) { .testi-cols { columns: 2; } }
@media (max-width: 575px) { .testi-cols { columns: 1; } }
