/* =========================================================
   HOME STATS DESKTOP
   ========================================================= */

.home-stats {
  position: relative;
  width: 100vw;
  height: var(--site-stats-height, 280px);
  min-height: var(--site-stats-height, 280px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #ffffff;
  padding: 90px 0 36px; /* 90px = 44px overlap botones + 46px respiro */
  box-sizing: border-box;
}

.home-stats__inner {
  width: min(1520px, calc(100% - 120px));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: -30px;
  margin: 0 auto;
  align-items: start;
}

.home-stats__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.home-stats__icon {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  object-fit: contain;
}

.home-stats__number {
  color: #5c5c5c;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.home-stats__label {
  color: #4f4f4f;
  font-size: 1.22rem;
  line-height: 1.4;
  font-weight: 400;
}
