.cc-trust {
  padding: 28px 20px;
  background: #fff;
}

.cc-trust__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cc-trust__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px 14px;
  padding: 18px;
  border: 1px solid #dfe7f1;
  border-radius: 8px;
}

.cc-trust__icon {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #dcfce7;
  display: grid;
  place-items: center;
  color: #059669;
  font-size: 22px;
  font-weight: 800;
}

.cc-trust__icon-image {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.cc-trust__icon::before {
  content: "✓";
}

.cc-trust__icon--shield::before {
  content: "✓";
}

.cc-trust__icon--truck::before {
  content: "→";
}

.cc-trust__icon--lock::before {
  content: "●";
}

.cc-trust__icon--heart::before {
  content: "♥";
}

.cc-trust__icon--star::before {
  content: "★";
}

.cc-trust__icon--support::before {
  content: "?";
}

.cc-trust h2 {
  margin: 0;
  font-size: 16px;
  color: #0f172a;
}

.cc-trust p {
  margin: 0;
  color: #475569;
}

@media (max-width: 767px) {
  .cc-trust__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .cc-hide-mobile {
    display: none;
  }
}
