/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 50:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.brand-gallery-wrapper {
  padding: 40px 20px;
}

.brand-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-gallery-item {
  width: calc(50% - 15px);
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.brand-gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.brand-gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

@media screen and (max-width: 768px) {
  .brand-gallery-item {
    width: 100%;
  }
}
</style>