/* 드래그&드롭 첨부 UI (허니타임 톤) */
.dnd-box { margin: 6px 0 4px; }
.dnd-zone {
  border: 2px dashed #EBB73E; border-radius: 12px; background: #FFFBF2;
  padding: 22px 16px; text-align: center; cursor: pointer; color: #5A3A1E;
  transition: background .15s, border-color .15s;
}
.dnd-zone:hover { background: #FFF6E0; }
.dnd-zone.drag { background: #FDEFCB; border-color: #F5B919; }
.dnd-zone .dnd-ico { font-size: 30px; line-height: 1; margin-bottom: 8px; }
.dnd-zone .dnd-t { font-size: 15px; font-weight: 700; }
.dnd-zone .dnd-t b { color: #C98A00; }
.dnd-zone .dnd-s { margin-top: 5px; font-size: 12px; color: #9a8f78; }
.dnd-zone .dnd-s b { color: #C98A00; }

.dnd-picker { display: none; }

.dnd-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; margin-top: 12px; }
.dnd-cell { position: relative; padding-top: 100%; border-radius: 8px; overflow: hidden; border: 1px solid #E8DFD0; background: #f6f4ef; }
.dnd-cell img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dnd-cell .dnd-del {
  position: absolute; top: 4px; right: 4px; width: 22px; height: 22px; line-height: 20px;
  border: 0; border-radius: 50%; background: rgba(0,0,0,.55); color: #fff; font-size: 16px; cursor: pointer; padding: 0;
}
.dnd-cell .dnd-del:hover { background: rgba(0,0,0,.8); }
.dnd-cell .dnd-no {
  position: absolute; bottom: 4px; left: 4px; min-width: 18px; height: 18px; line-height: 18px;
  padding: 0 5px; border-radius: 9px; background: #F5B919; color: #fff; font-size: 11px; font-weight: 700; text-align: center;
}

@media (max-width: 600px) {
  .dnd-zone { padding: 18px 12px; }
  .dnd-grid { grid-template-columns: repeat(auto-fill, minmax(70px, 1fr)); gap: 6px; }
}
