.file-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.file-row span {
  color: #475569;
  font-size: 0.95rem;
}

.range-value {
  margin-top: 8px;
  font-weight: 600;
  color: #0f172a;
}

.preview-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.preview-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 16px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preview-title {
  font-weight: 600;
  color: #475569;
}

.preview-card img {
  width: 100%;
  border-radius: 12px;
  object-fit: contain;
  background: #ffffff;
  max-height: 240px;
}

@media (max-width: 720px) {
  .preview-card img {
    max-height: 200px;
  }
}
