/* scoped to this section only */
    .trust-wrap * { box-sizing: border-box; }

    /* Use flexible grids so mobile doesn't force 3 columns */
    .trust-grid-media {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 12px;
      align-items: center;
      margin-bottom: 26px;
    }

    .trust-grid-reviews {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 12px;
    }

    /* Prevent the "vertical letters" effect */
    .trust-card p {
      overflow-wrap: anywhere;
      word-break: normal;
      hyphens: auto;
    }