.statistics {
  display: flex;
  flex-direction: column;
}
@media (min-width: 48em) {
  .statistics {
    flex-direction: row;
  }
}
.statistics > .statistic--featured {
  aspect-ratio: 3/2;
  flex: 0 0 33.333%;
  justify-content: center;
  padding-inline-start: 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 62em) {
  .statistics > .statistic--featured {
    aspect-ratio: 1/1;
  }
}
.statistics > .statistic--featured.has-background:first-child {
  padding-inline-start: 0;
}
.statistics > .statistic--featured.has-background:first-child::before {
  background-color: var(--wdg-color-background);
  content: "";
  height: 100%;
  inset-inline: calc(var(--wdg-gap-gutter) * -1);
  pointer-events: none;
  position: absolute;
  width: 100vw;
  z-index: -1;
}
@media (min-width: 48em) {
  .statistics > .statistic--featured.has-background:first-child::before {
    inset-inline: auto 0;
  }
}
.statistics > .statistic--featured + .statistics-grid {
  padding: var(--wdg-gap-small) 0;
}
@media (min-width: 48em) {
  .statistics > .statistic--featured + .statistics-grid {
    padding: var(--wdg-gap-small);
  }
}

/*# sourceMappingURL=style.css.map */