
/*!********************************************!*\
  !*** ../src/elements/metrics/metrics.scss ***!
  \********************************************/
/*******************************
 * Buttons
 ******************************/
/*
 * Applies the complete set of button styles with all desired style variations.
 * This mixin is normally applied to form buttons or links with
 * the desired button classes eg. .button.style-xxx.
 */
/*
 * Contains styles that all of the buttons have in common.
 * Some button styles might opt out or override some of these styles.
 * One benefit of this approach is that all of the buttons will be consistently
 * configurable with the CSS variables defined below.
 */
/*******************************
 * Button Styles
 *
 * Styles should define the way the buttons look. Depending on the project,
 * you may need to optimize each style based on the section / element that
 * a button is used in. For that purpose you can use the predefined CSS
 * variables to easily overwrite the desired colors based on your need.
 ******************************/
/*******************************
 * Inputs
 ******************************/
.metrics {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.375rem;
  column-gap: /* grow(20, 40) */ clamp(1.25rem, 0.9090909091rem + 1.5151515152vw, 2.5rem);
  flex-wrap: wrap;
}
.metrics:not(:is(:first-child, link:first-child + *)) {
  margin-top: var(--section-spacing);
}
.metrics:not(:last-child) {
  margin-bottom: var(--section-spacing);
}
@supports (flex-wrap: balance) {
  .metrics {
    flex-direction: row;
    flex-wrap: balance;
  }
}
@supports not (flex-wrap: balance) {
  @media (width >= 992px /* md */) {
    .metrics {
      flex-direction: row;
    }
  }
}
.metrics .metric .primary {
  display: block;
  font-family: var(--accent-font-family);
  font-size: /* grow(40, 72) */ clamp(2.5rem, 1.9545454545rem + 2.4242424242vw, 4.5rem);
  font-weight: 550;
  line-height: 1.05;
}
.metrics .metric .secondary {
  display: block;
  font-size: var(--base-font-size);
}
.metrics .metric .count-up {
  display: grid;
}
.metrics .metric .count-up .static-part {
  visibility: hidden;
}
.metrics .metric .count-up > * {
  grid-area: 1/1;
}

/*# sourceMappingURL=css-wpce--metrics.css.map*/