.grid-banner {
  padding: 3rem 0;
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.grid-banner::after {
  content: '';
  display: block;
  height: 150%;
  aspect-ratio: 1/1;
  position: absolute;
  right: 0;
  top: 50%;
  background-image: url(https://f.hubspotusercontent10.net/hubfs/3444764/SBM-Icons/blue-union.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(25%, -50%);
  z-index: -1;
  opacity: 0.24;
}
.grid-banner .page-center {
  display: flex;
  justify-content: space-between;
}
.grid-banner .grid-banner__copy {
  display: flex;
  justify-content: center;
  flex-flow: column;
}
.grid-banner h2.grid-banner__title {
  font-size: 36px;
  font-weight: 500;
}
.grid-banner__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify: content: space-between;
}
.grid-banner__grid__item {
  width: calc(50% - 0.5rem);
  margin-bottom: 1rem;
  box-shadow: 0px 8px 24px 0px #434B560A;
  border: 1px solid #E9ECF1;
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
}
.grid-banner__grid--wide .grid-banner__grid__item {
  width: calc(33% - 0.75rem);
}
@supports (gap: 1rem) {
  .grid-banner__grid__item {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .grid-banner__copy,
  .grid-banner__grid {
    width: 45%; 
  }
}
@media (max-width: 767.999px) {
  .grid-banner .page-center {
    flex-flow: column;
  }
  
  .grid-banner__grid__item {
    width: calc(50% - 0.5rem) !important;
  }
}