.bug-upload-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 14px;
}

.bug-upload-grid .bug-files {
  align-content: start;
}

.bug-context label > span {
  color: #687789;
  font-weight: 500;
}

.bug-file-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.bug-file-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.bug-file-list img {
  width: 54px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 7px;
  background: #dce8eb;
}

.bug-file-list b {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 680px) {
  .bug-upload-grid,
  .bug-file-list {
    grid-template-columns: 1fr;
  }
}
