/* gap importants required to properly show on Editor too */
.our-values {
  & .our-values__list {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 360px);
    gap: 36px !important;    justify-items: center;

    @media (min-width: 800px) {
      grid-template-columns: repeat(2, 360px);
      gap: 28px !important;
    }

    @media (min-width: 1160px) {
      grid-template-columns: repeat(3, 360px);
      gap: 24px !important;
    }

    @media (min-width: 1280px) {
      gap: 30px !important;
    }
  }
}
