/* Trust strip : grid 2x2 sur tablette pour alignement propre */
@media (min-width: 640px) and (max-width: 1023px) {
  #trust > div {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: 1.5rem !important;
    row-gap: 2.5rem !important;
    justify-items: center !important;
    align-items: center !important;
    text-align: center !important;
  }
  #trust > div > div[aria-hidden="true"] {
    display: none !important;
  }
  #trust > div > div:not([aria-hidden]) {
    width: 100%;
    justify-content: center;
  }
}
