.record-row.has-preview {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) auto;
}

.file-thumbnail {
  display: block;
  width: 94px;
  height: 72px;
  overflow: hidden;
  border: 1px solid #d5dfed;
  border-radius: 8px;
  background: #f1f5fa;
}

.file-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.record-row.has-preview > div:last-child {
  display: grid;
  gap: 7px;
  justify-items: end;
  padding-top: 2px;
}

@media (max-width: 600px) {
  .record-row.has-preview { grid-template-columns: 76px minmax(0, 1fr); }
  .file-thumbnail { width: 76px; height: 60px; }
  .record-row.has-preview > div:last-child {
    grid-column: 2;
    grid-auto-flow: column;
    justify-content: start;
    justify-items: start;
  }
}
