/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 72:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
  .brand-logos-section {
    padding: 60px 20px 40px;
    text-align: center;
  }

  .brand-logos-inner {
    background-color: white;
    padding: 40px;
  }

  .brand-logos-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .brand-logos-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
  }

  .brand-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 30px;
    align-items: center;
    justify-items: center;
  }

  .brand-logos-grid a {
    display: block;
    max-width: 100px;
    transition: transform 0.3s ease;
  }

  .brand-logos-grid a:hover {
    transform: scale(1.05);
  }

  .brand-logos-grid img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
  }

  .brand-logos-grid a:hover img {
    filter: none;
  }

  @media (max-width: 768px) {
    .brand-logos-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 480px) {
    .brand-logos-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
</style>