.dpf-visual {
  margin-top: 22px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 67, .09);
  border-radius: 20px;
  background: linear-gradient(145deg, #edf7fa, #f7fbfa);
  text-align: center;
}
.dpf-visual img {
  display: block;
  width: min(100%, 620px);
  height: auto;
  max-height: 520px;
  margin: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(16, 42, 67, .16));
}
.dpf-visual figcaption {
  margin-top: 14px;
  color: #607086;
  font-size: 12px;
  font-weight: 700;
}
.dpf-report-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.dpf-report-card {
  margin: 0;
  padding: 12px 12px 14px;
  border: 1px solid rgba(16, 42, 67, .09);
  border-radius: 17px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 22px rgba(16, 42, 67, .07);
}
.dpf-report-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 494 / 644;
  object-fit: contain;
}
.dpf-report-card figcaption {
  margin-top: 10px;
  color: #102a43;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}
@media (max-width: 900px) {
  .dpf-report-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .dpf-report-gallery { gap: 8px; }
  .dpf-report-card { padding: 7px; }
  .dpf-report-card figcaption { font-size: 10px; }
  .dpf-visual { padding: 12px; }
}
