.pointsStage4Page {
  display: grid;
  gap: 12px;
}

.pointsSummaryCard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
}

.pointsSummaryItem {
  min-width: 0;
  padding: 11px 10px;
  border: 1px solid rgba(99, 102, 241, .16);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(99, 102, 241, .06), rgba(14, 165, 233, .05));
}

.pointsSummaryItem span {
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
  word-break: keep-all;
}

.pointsSummaryItem strong {
  display: block;
  margin-top: 6px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pointsHistoryRow {
  border: 1px solid rgba(226, 232, 240, .86);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  padding: 10px;
}

.pointsHistoryRow + .pointsHistoryRow {
  margin-top: 8px;
}

.pointsHistoryIcon {
  flex: 0 0 auto;
}

.pointsHistoryAmount.minus {
  color: #ef4444;
}

@media (max-width: 360px) {
  .pointsSummaryCard {
    grid-template-columns: 1fr;
  }
}
