.statistics:not(.has-1-columns) {
  display: grid;
  row-gap: var(--wdg-gap-block);
}
@media (max-width: 47.9375em) {
  .statistics.has-swipe-mobile-format {
    -moz-column-gap: var(--wdg-gap-xsmall);
         column-gap: var(--wdg-gap-xsmall);
    grid-auto-columns: minmax(60%, 1fr);
    grid-auto-flow: column;
    overflow-x: auto;
  }
  .statistics.has-swipe-mobile-format > .statistic {
    padding-inline: 0;
  }
}
@media (min-width: 48em) {
  .statistics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 62em) {
  .statistics.has-2-columns .statistic:nth-child(even) {
    border-left: 1px solid var(--wdg-color-screen, currentColor);
  }
  .statistics.has-3-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .statistics.has-3-columns .statistic:not(:nth-child(3n+1)) {
    border-left: 1px solid var(--wdg-color-screen, currentColor);
  }
  .statistics.has-4-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .statistics.has-4-columns .statistic:nth-child(even), .statistics.has-4-columns .statistic:nth-child(4n+3) {
    border-left: 1px solid var(--wdg-color-screen, currentColor);
  }
  .statistics.has-5-columns {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .statistics.has-5-columns .statistic:not(:nth-child(5n+1)) {
    border-left: 1px solid var(--wdg-color-screen, currentColor);
  }
}
@media (min-width: 48em) and (max-width: 61.9375em) {
  .statistics .statistic:nth-child(even) {
    border-left: 1px solid var(--wdg-color-screen, currentColor);
  }
}

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