.stats-wrapper {
  width: 275px;
  text-align: center;
  position: relative;
  /* important flag preserved verbatim from the Sass source. */
  display: flex !important;
  flex-direction: column;
  align-items: center;
}

.stats-circle {
  background: url("/themes/custom/college_of_business/images/triangles_1.png") no-repeat var(--color-blue-60);
  height: 203px;
  width: 203px;
  border-radius: 203px;
  position: relative;
}

.stats-circle-text {
  text-align: center;
  font-size: 3.75rem;
  color: var(--color-lehigh-brown);
  position: relative;
  top: 30%;
}

.stats-description {
  margin: var(--space-and-one-half) 0 0 0;
  font-size: 1.5rem;
  color: var(--color-lehigh-brown);
  width: 80%;
  line-height: 1.2;
}

@media only screen and (min-width: 769px) {
  .stats-description {
    width: inherit;
    line-height: 1;
  }
}

/* Background image keyed to sibling position -- each ".stats-wrapper" in
   a stats_slider listing gets a different triangles_N.png background on
   its inner ".stats-circle", cycling through the first 3 real positions.
   Previously resolved via a "web/images -> ../styleguide/build/images"
   symlink -- itself only ever populated by running the Fractal build's
   own "npm run build" (build/ is gitignored in the submodule, confirmed
   via "git ls-files"), a real, silent runtime dependency on the
   styleguide submodule's BUILD OUTPUT, not just its source tree. Copied
   byte-identical (confirmed via md5, all 6 files including @2x variants)
   to this theme's own images/ directory instead, so CI/DDEV no longer
   need to build the Fractal frontend just to populate this one
   directory. */
.stats-wrapper:first-of-type .stats-circle {
  background: url("/themes/custom/college_of_business/images/triangles_1.png") no-repeat var(--color-blue-60);
}

.stats-wrapper:nth-of-type(2) .stats-circle {
  background: url("/themes/custom/college_of_business/images/triangles_2.png") no-repeat var(--color-blue-60);
}

.stats-wrapper:last-of-type .stats-circle {
  background: url("/themes/custom/college_of_business/images/triangles_3.png") no-repeat var(--color-blue-60);
}
