{% style %}
.logo-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}

.logo-bar__item {
  width: {{ section.settings.width }}px;
  height: {{ section.settings.height }}px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-bar__item img,
.logo-bar__image {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  display: block;
}

@media screen and (max-width: 767px) {
  .logo-bar {
    grid-template-columns: 1fr;
  }

  .logo-bar__item {
    width: 100%;
    height: auto;
  }

  .logo-bar__item img {
    height: auto !important;
  }
}
{% endstyle %}
