.stats-card {
  width: 100%;
  min-height: 88px;
  padding: 16px 18px;
  border: 1px solid #d9e2ef;
  border-radius: 16px;
  background: #ffffff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.stats-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

.stats-card-grid > * {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .stats-card-grid > * {
    flex-basis: calc(50% - 8px);
  }
}

@media (min-width: 1200px) {
  .stats-card-grid > * {
    flex-basis: calc(25% - 12px);
  }
}

.stats-card__title {
  margin: 0 0 10px;
  color: #7a8699;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.stats-card__value {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
