.tool-card {
  display: grid;
  gap: 16px;
}

.preview {
  min-height: 220px;
  border-radius: 12px;
  border: 1px dashed #cbd5f5;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-align: center;
  padding: 12px;
}

.preview img {
  max-width: 100%;
  max-height: 220px;
}

.results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.result-item {
  padding: 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.result-item .label {
  color: #64748b;
}

.result-item .value {
  color: #0f172a;
  font-weight: 600;
  word-break: break-all;
}
