/**
 * IT Store — trust / USP bar styles.
 */
.itstore-trustbar {
  background: #ffffff;
  border-bottom: 1px solid #e3e7ef;
}
.itstore-trustbar__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 14px 0;
}
.itstore-trustbar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.itstore-trustbar__icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #eef4ff;
  color: #2f6fed;
}
.itstore-trustbar__icon svg { width: 22px; height: 22px; }
.itstore-trustbar__copy { display: flex; flex-direction: column; min-width: 0; }
.itstore-trustbar__title { font-size: 14px; font-weight: 700; color: #0b1220; line-height: 1.2; }
.itstore-trustbar__text { font-size: 12px; color: #5a6478; }

@media (max-width: 900px) {
  .itstore-trustbar__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .itstore-trustbar__list { grid-template-columns: 1fr; gap: 10px; }
}
