/** Shopify CDN: Minification failed

Line 9:0 Unexpected "{"
Line 9:1 Expected identifier but found "%"
Line 130:0 Unexpected "{"
Line 130:1 Expected identifier but found "%"

**/
{% style %}
  .partner-apps-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }

  @media screen and (min-width: 750px) {
    .partner-apps-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (min-width: 990px) {
    .partner-apps-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .integration-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .integration-filters input,
  .integration-filters select {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  #integration-search {
    flex: 0 0 50%;
    min-width: 250px;
  }

  #category-filter,
  #app-filter {
    flex: 0 0 20%;
    min-width: 150px;
  }

  .partner-app-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s ease;
  }

  .partner-app-banner {
    width: 100%;
    height: 120px;
    object-fit: cover;
  }

  .partner-app-main {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
  }

  .partner-app-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 0.25rem;
  }

  .partner-app-content {
    flex-grow: 1;
  }

  .partner-app-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

  .button--small {
    font-size: 0.8rem;
    padding: 0.4em 0.8em;
    min-width: 5rem;
    min-height: 2.25rem;
  }

  .button--tertiary {
    padding: 0px;
  }

  .partner-app-details {
    padding: 0 1rem 1rem;
    font-size: 1.1rem;
  }

  .partner-app-works-with {
    font-size: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: end;
    align-items: center;
  }

  .works-with-icon {
    border-radius: 5px;
    width: 32px;
    height: 32px;
    object-fit: contain;
  }
{% endstyle %}
