/** IT Store — testimonials. */
.itstore-testi__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.itstore-testi__card {
  border: 1px solid #e3e7ef;
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 4px 16px rgba(16, 24, 40, .04);
  padding: 22px;
  background: #fff;
  margin: 0;
}
.itstore-testi__stars { color: #f59e0b; font-size: 13px; margin-bottom: 10px; }
.itstore-testi__text { margin: 0 0 14px; color: #3c485f; font-size: 13.5px; line-height: 1.6; }
.itstore-testi__author { display: flex; align-items: center; gap: 10px; }
.itstore-testi__avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.itstore-testi__avatar img { width: 100%; height: 100%; object-fit: cover; }
.itstore-testi__avatar--initial { background: #eaf1ff; color: #2f6fed; font-weight: 800; font-size: 14px; }
.itstore-testi__name { display: block; font-weight: 700; font-size: 13px; color: #0b1220; }
.itstore-testi__role { display: block; font-size: 11.5px; color: #9aa4b8; }
@media (max-width: 820px) { .itstore-testi__grid { grid-template-columns: 1fr; } }
