/* Feather line icon — brand-dna.json icon_style: feather-outline 준수 */
.feather-icon {
  display: inline-block;
  vertical-align: -3px;  /* 텍스트 베이스라인 정렬 */
  flex-shrink: 0;
  color: currentColor;   /* 부모 색 상속 */
}

/* 모드 버튼 내부 */
.mode-btn .feather-icon {
  margin-right: 6px;
}

/* 갤러리 카드 내부 */
.gallery-card .feather-icon,
.theme-card .feather-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

/* 미정의 아이콘 자리 */
.feather-icon-missing {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px dashed #888;
  vertical-align: -3px;
}

/* ─── Deep-link context badge (utils/url-context.js) ─── */
.url-context-badge {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 14px;
  background: #00529B;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 82, 155, 0.25);
  font-family: inherit;
  max-width: 480px;
}
.url-context-badge-label { opacity: 0.85; font-size: 11px; }
.url-context-badge-text { font-weight: 600; }
.url-context-badge-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  margin-left: 4px;
  font-family: inherit;
}
.url-context-badge-close:hover { opacity: 0.7; }
