/* Stats module */
.stats_module{
  padding: 56px 24px;
}
.stats_module h2{
  text-align: center;
  margin-bottom: 24px;
}
.stats_module__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  text-align: center;
}
.stats_module__icon{
  width: var(--ib-stats-icon-size, 48px);
  height: auto;
  display: block;
  margin: 0 auto 10px;
}
.stats_module__value{
  font-size: var(--ib-stats-value-size, 28px);
  font-weight: 800;
}
.stats_module__label{
  color: #6b7280;
  font-size: var(--ib-stats-label-size, 13px);
}
