/* Batch 9 v4: real drone image cleanup.
   Purpose: remove oversized placeholder-like image panels and show actual product photos. */
.dsg-v4-image-wrap {
  width: 100%;
  min-height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f6f2;
  border: 1px solid rgba(201,162,85,0.18);
  border-radius: 10px;
  overflow: hidden;
  margin: 16px 0 22px;
  padding: 12px;
}
.dsg-v4-photo {
  display: block;
  width: auto;
  max-width: 90%;
  max-height: 178px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}
.product-card .dsg-v4-image-wrap,
.lineup-card .dsg-v4-image-wrap,
.drone-card .dsg-v4-image-wrap,
.model-card .dsg-v4-image-wrap,
.recommendation-card .dsg-v4-image-wrap,
.quiz-result .dsg-v4-image-wrap,
.match-card .dsg-v4-image-wrap {
  min-height: 180px;
}
.compare-card .dsg-v4-image-wrap,
.comparison-card .dsg-v4-image-wrap,
.drone-row .dsg-v4-image-wrap {
  min-height: 120px;
  max-width: 240px;
  margin: 10px 0 14px;
}
.compare-card .dsg-v4-photo,
.comparison-card .dsg-v4-photo,
.drone-row .dsg-v4-photo { max-height: 126px; }
.dsg-v4-source-note {
  display: block;
  color: var(--muted, #7a7870);
  font-size: .58rem;
  letter-spacing: .04em;
  line-height: 1.45;
  margin-top: -12px;
  margin-bottom: 16px;
}
@media (max-width: 700px) {
  .dsg-v4-image-wrap { min-height: 130px; }
  .dsg-v4-photo { max-height: 142px; }
}
