/* ═══════════════════════════════════════════
   expInterview.css — scene-main 안에 끼우는 칩 인터뷰
   기존 sceneViewer 레이아웃 변경 없음
   ═══════════════════════════════════════════ */

/* 인터뷰 영역 — choicesContainer 뒤에 삽입됨 */
.exp-interview-zone {
  padding: 16px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* 각 질문 블록 */
.exp-iv-prompt {
  transition: opacity 0.6s ease;
}
.exp-iv-prompt.answered {
  opacity: 0.3;
}

/* 질문 텍스트 */
.exp-iv-question {
  color: #666;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 10px;
  white-space: pre-line;
}

/* 칩 컨테이너 */
.exp-iv-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* 칩 */
.exp-iv-chip {
  background: transparent;
  border: 1px solid #1a1a1a;
  color: #666;
  padding: 6px 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s;
}
.exp-iv-chip:hover {
  border-color: #d4af37;
  color: #d4af37;
}
.exp-iv-chip.void {
  color: #383838;
  font-style: italic;
  border-color: #141414;
}
.exp-iv-chip.void:hover {
  border-color: #444;
  color: #555;
}
.exp-iv-chip.selected {
  border-color: #d4af37;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.06);
}

/* 복합 선택 확인 버튼 */
.exp-iv-confirm {
  background: none;
  border: 1px solid #2a2a2a;
  color: #888;
  padding: 6px 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.exp-iv-confirm.visible {
  opacity: 1;
  pointer-events: auto;
}
.exp-iv-confirm:hover {
  border-color: #d4af37;
  color: #d4af37;
}

/* 답변 표시 */
.exp-iv-answer {
  color: #d4c8a8;
  font-size: 0.85rem;
}

/* 버킷 메시지 */
.exp-iv-bucket-msg {
  color: #6a4a6a;
  font-style: italic;
  font-size: 0.82rem;
  padding: 0;
}


