.logo-quilt-widget {
  display: flex;
  align-items: center;
  gap: 48px;
  text-align: left;
  padding: 0;
}

.logo-quilt-widget .description-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  text-align: center;
}

.logo-quilt-widget.layout-row .description-wrapper {
  max-width: 50%;
  text-align: left;
}

.logo-quilt-widget .logos-wrapper {
  position: relative;
  text-align: center;
  display: flex;
  gap: 18px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0px;
  align-items: center;
}

.logo-quilt-widget.layout-row {
  flex-direction: row;
}

.logo-quilt-widget.layout-row .logo-title {
  display: none;
}

.logo-quilt-widget.layout-column {
  flex-direction: column;
}

.logo-quilt-widget.layout-row .logos-wrapper {
  max-width: 50%;
  display: flex;
  height: 120px;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .logo-quilt-widget.layout-row .logos-wrapper .logo-item {
    flex: unset;
  }
}

.logo-quilt-widget.layout-column .logos-wrapper {
  align-items: flex-start;
}

.logo-quilt-widget.layout-column .logo-wrapper {
  display: flex;
  min-height: 130px;
}

.logo-quilt-widget.layout-column .logo-item {
  min-height: 130px;
}

.logo-quilt-widget .logos-wrapper .logo-item {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.logo-quilt-widget .logos-wrapper img {
  object-fit: contain;
  min-width: 0px;
  flex: 1;
  border-radius: 0px !important;
}


@media screen and (max-width: 768px) {
  .logo-quilt-widget {
    flex-direction: column !important;
    gap: 24px;
  }

  .logo-quilt-widget .description-wrapper {
    max-width: 100% !important;
    text-align: center !important;
  }

  .logo-quilt-widget .logos-wrapper {
    max-width: 100vw !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-height: auto;
    gap: 12px;
  }

  .logo-quilt-widget .logos-wrapper .logo-item {
    flex: 1 1 45%;
    max-height: 200px;
    display: flex;
    min-height: 100px !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .logo-quilt-widget .logos-wrapper img {
    max-height: unset;
    width: auto;
    max-height: 100px; 
  }

  .logo-quilt-widget .logo-title {
    display: none;
  }
}