/* ==========================================================================
   BrandKeyPro — Homepage: Testimonials
   BG full 100% #fff; padding 6.25rem 0; nội dung trong container 1200px
   Ba cột bằng nhau, gap giữa các cột 1.875rem
   ========================================================================== */

.testimonials {
/*  background: #ffffff;
  padding: 6.25rem 0;*/
}

/* ======================= GRID ======================= */
/* Ba cột bằng nhau, mỗi cột cách nhau 1.875rem */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  align-items: start;
}

/* Item */
.tstm-item {}

/* Avatar tròn 11.25rem */
.tstm-avatar {
  width: 11.25rem;
  height: 11.25rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.tstm-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tên + chức danh */
.tstm-meta {
  margin: 1.875rem 0;
  text-align: center;
}
.tstm-name {
  margin: 0;
  font-weight: 700;
  font-size: 1.25rem;
}
.tstm-role {
  margin: 0;
  color: var(--neutral-500);
}

/* Nội dung */
.tstm-content {
  text-align: left;
  max-width: 36rem;
  margin: 0 auto;
}
.tstm-content p {
  margin: 0;
  line-height: 1.75;
  color: #222;
}

/* ========================= Responsive ========================= */

/* Tablet ≤ 64rem (1024px): giữ 3 cột nhưng avatar lớn hơn */
@media (max-width: 64rem) {
  .tstm-avatar {
    width: 8rem;
    height: 8rem;
  }
}

/* Mobile ≤ 40rem (640px): 1 cột + border & padding cho item */
@media (max-width: 40rem) {
  .testimonials .bk-container {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .tstm-item {
    border-bottom: 1px dashed #cccccc;
    padding: 1.25rem 0;
  }
  .tstm-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .tstm-avatar {
    width: 8rem;
    height: 8rem;
    margin-bottom: .75rem;
  }
  .tstm-meta { margin: 1.25rem 0; }
  .tstm-name { font-size: 1.125rem; }
  .tstm-content { max-width: 100%; }
  .tstm-content p { line-height: 1.65; }
}
