.px-imagewall {
  width: var(--baseWidth);
  max-width: var(--maxWidth);
  margin-left: auto;
  margin-right: auto;
}
.px-imagewall-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}
@media all and (max-width: 1024px) {
  .px-imagewall-inner {
    justify-content: flex-start;
  }
}
.px-imagewall-inner .image {
  background: #fff;
  box-shadow: 0 4px 15px 0 rgba(113, 99, 169, 0.3);
  position: relative;
  width: 220px;
  height: 130px;
  border-radius: var(--baseBorderRadius);
}
.px-imagewall-inner .image > img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 95%;
  height: 95%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}
.px-imagewall.square_style .image {
  width: 220px;
  height: 220px;
}
.px-imagewall.square_style .image > img {
  width: 85%;
  height: 85%;
}

.wp-block-columns .px-imagewall,
.px-frame-layout .px-imagewall,
.accordion-content .px-imagewall,
.tab_wrapper .px-imagewall {
  width: 100%;
}