.integrations-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  
  .integrations-app {
    height: 24px;
    width: 24px;
    margin: 12px;
  }
  
  /* Small devices (landscape phones, 576px and up) */
  @media (width >= 576px) {
    .integrations-app {
      height: 40px;
      width: 40px;
    }
  }
  
  /* Medium devices (tablets, 768px and up) */
  @media (width >= 768px) {
    .integrations-app {
      height: 22px;
      width: 22px;
    }
  
    .integrations-grid {
      gap: 16px;
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
  
  /* Large devices (desktops, 992px and up) */
  @media (width >= 992px) {
    .integrations-grid {
        gap: 24px;
      }

    .integrations-app {
      height: 28px;
      width: 28px;
    }
  }
  
  /* Extra large devices (large desktops, 1200px and up) */
  @media (width >= 1200px) {
    .integrations-app {
      height: 40px;
      width: 40px;
    }
  }