.compress-stats {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stat-card {
  background: #f8fbff;
  border: 1px solid #dbe7ff;
  border-radius: 12px;
  padding: 10px 12px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 4px;
}

.stat-card strong {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.result-box {
  background: #ffffff;
  border: 1px solid #dbe3f3;
  border-radius: 14px;
  padding: 14px;
  color: #334155;
  line-height: 1.55;
  white-space: pre-line;
}

@media (max-width: 900px) {
  .compress-stats {
    grid-template-columns: 1fr;
  }
}
