.wp-block-group {
  position: relative;
  z-index: 1;
  max-width: var(--group-wide-size, none);
  width: 100%;
  margin: 0 auto;
}
.wp-block-group.has-background {
  padding: 60px 20px;
}
@media screen and (max-width: 500px) {
  .wp-block-group.has-background {
    padding: 40px 32px 50px;
  }
}
.wp-block-group.is-type-flex {
  display: flex;
  flex-wrap: wrap;
}
.wp-block-group.is-type-constrained {
  flex-wrap: nowrap;
}
.wp-block-group.is-type-grid {
  display: grid;
  grid-column-gap: 60px;
  grid-row-gap: 40px;
}
.wp-block-group.is-type-grid.has-2-columns {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 640px) {
  .wp-block-group.is-type-grid.has-2-columns {
    grid-template-columns: 1fr;
  }
}
.wp-block-group.is-type-grid.has-2-columns > *:not(:first-of-type):before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 640px) {
  .wp-block-group.is-type-grid.has-2-columns > *:not(:first-of-type):before {
    content: none;
  }
}
.wp-block-group.is-type-grid.has-3-columns {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 640px) {
  .wp-block-group.is-type-grid.has-3-columns {
    grid-template-columns: 1fr;
  }
}
.wp-block-group.is-type-grid.has-4-columns {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 960px) {
  .wp-block-group.is-type-grid.has-4-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .wp-block-group.is-type-grid.has-4-columns {
    grid-template-columns: 1fr;
  }
}
.wp-block-group.is-type-grid.has-4-columns > *:before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.wp-block-group.is-type-grid.has-4-columns > *:first-of-type:before, .wp-block-group.is-type-grid.has-4-columns > *:nth-of-type(5n):before, .wp-block-group.is-type-grid.has-4-columns > *:nth-of-type(9n):before {
  content: none;
}
.wp-block-group.is-type-grid.has-4-columns > *:nth-of-type(10n):before {
  content: "";
}
.wp-block-group.is-type-grid.has-5-columns {
  grid-template-columns: repeat(5, 1fr);
}
.wp-block-group.is-type-grid > *,
.wp-block-group.is-type-grid > .wp-block-group {
  margin-top: 0;
}
.wp-block-group.is-content-justification-left > * {
  margin-left: 0;
  margin-right: auto;
}
.wp-block-group.is-content-justification-center > * {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-group.is-content-justification-right > * {
  margin-left: auto;
  margin-right: 0;
}
.wp-block-group.is-content-justification-space-between {
  justify-content: space-between;
}
.wp-block-group + .wp-block-group {
  margin-top: 30px;
}
.wp-block-group + .wp-block-separator {
  margin: 0 auto;
}
.wp-block-group > *:not(.wp-block-group) {
  max-width: var(--group-content-size, 1200px);
  margin-left: auto;
  margin-right: auto;
}
.wp-block-group > *:is(.wp-block-columns) {
  margin-bottom: 0;
}
.wp-block-group > *:first-child {
  margin-top: 0;
}
.wp-block-group > *:last-child {
  margin-bottom: 0;
}
