.wawi-panels-widget {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 64px;
  column-gap: clamp(12px, 3vw, 64px);
  z-index: 1;
}
.wawi-panels-widget:not(.no-bg) {
  padding: 43px 39px;
}
.wawi-panels-widget:not(.no-bg)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1487px;
  background: #FFF5E9;
  filter: blur(97px);
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .wawi-panels-widget {
    padding: 20px 0px;
    row-gap: 32px;
    column-gap: clamp(8px, 2vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .wawi-panels-widget {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 575px) {
  .wawi-panels-widget {
    grid-template-columns: 1fr;
  }
}
