/* ==========================================================================
   px-stats — Reusable statistics bar
   ========================================================================== */

.px-stats {
  background-color: var(--Oranje-100);
  border-radius: var(--R12);
  padding: var(--D3) var(--D2);
}

.px-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--D1);
}

.px-stats__item {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: var(--D05);
}

.px-stats__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background-color: var(--Oranje-10);
  border-radius: var(--R8);
  color: var(--Oranje-100);
}

.px-stats__icon svg {
  width: 40px;
  height: 40px;
}

.px-stats__text {
  display: flex;
  flex-direction: column;
}

.px-stats__value {
  font-family: var(--Font-Family-Primary);
  font-size: var(--Font-Size-H5);
  font-weight: var(--px-weight-extrabold);
  line-height: 1.3;
  color: var(--Wit);
}

.px-stats__label {
  font-family: var(--Font-Family-Primary);
  font-size: var(--Font-Size-Body);
  font-weight: var(--px-weight-regular);
  line-height: 1.5;
  color: var(--Wit);
}

@media (max-width: 768px) {
  .px-stats {
    padding: var(--D3) var(--D15);
  }

  .px-stats__inner {
    grid-template-columns: 1fr;
    gap: var(--D075);
  }

  .px-stats__item {
    gap: var(--D05);
    align-items: center;
  }

  .px-stats__value {
    font-size: var(--Font-Size-Body);
    line-height: 1.3;
  }
}
