/* 디스코드 임베드 재현 전용 스타일.
 *
 * 여기 있는 색은 디자인 시스템 토큰이 아니다. 미리보기의 목적이 "실제와 같게 보이는 것"이라
 * 임베드 카드 안쪽만 디스코드 색을 그대로 쓴다(plan.md Complexity Tracking).
 * 카드 바깥(패널·여백·글꼴)은 전부 토큰을 쓴다. 이 파일의 색을 다른 화면에 가져다 쓰지 않는다.
 */

.dc {
  background: #313338;
  border-radius: var(--r-lg);
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.45;
}

.dc__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.dc__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #5865f2;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.dc__bot-name { color: #f2f3f5; font-weight: 700; font-size: 13px; }

.dc__tag {
  background: #5865f2;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
}

.dc__time { color: #949ba4; font-size: 11px; }

/* 임베드: 왼쪽 색상 띠 + 본문 + 우측 썸네일 */
.dc__embed {
  display: flex;
  gap: 12px;
  background: #2b2d31;
  border-left: 4px solid #2ecc71;
  border-radius: 4px;
  padding: 12px 14px;
}

.dc__embed-body { flex: 1; min-width: 0; }

.dc__embed-title {
  color: #f2f3f5;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.dc__embed-desc {
  color: #dbdee1;
  font-size: 13px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.dc__thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 4px;
  overflow: hidden;
  background: #1e1f22;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dc__thumb img { width: 100%; height: 100%; object-fit: cover; }

.dc__thumb-fallback { color: #949ba4; font-size: 22px; font-weight: 700; }

/* 버튼 행 */
.dc__actions { margin-top: 8px; }

.dc__button {
  display: inline-block;
  background: #248046;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 3px;
}

/* 안내는 디자인 시스템 토큰을 쓴다 — 재현 대상이 아니다 */
.dc__note {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--warning);
}
