/* 도구 마무리 줄 — 2026-08-02 은코치 "뚝 끊긴채로 이탈한단 말이야"
   2026-08-14 시안 정본으로 개정 (도구 15쌍 검수 P11): 알약 버튼이 아니라
   가운데 정렬 텍스트 버튼+링크 한 줄이다 (Tool Concept.dc.html 149~151행).
   안내 문장은 기본 없음 — 저장 실패·로그인 풀림 등 오류 피드백에만 쓴다. */
.tool-finish {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
  margin-top: 14px;
  padding: 4px 0 8px;
}
.tool-finish .tf-log {
  border: 0;
  background: none;
  color: #4E5968;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  min-height: 48px;            /* 손가락으로 누를 수 있는 크기 */
  padding: 12px 6px;
  line-height: 1.4;
  cursor: pointer;
  word-break: keep-all;        /* 어절 단위 줄바꿈 */
}
/* 텍스트형이라 배경 없이 글자색이 상태를 말한다 — 색은 Tool States 카탈로그 표준 */
.tool-finish .tf-log:disabled {
  color: #1D4F9C;
  cursor: default;
}
.tool-finish .tf-log.done {
  color: #065F46;
}
.tool-finish .tf-home {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 6px;
  color: #4E5968;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  word-break: keep-all;
}
.tool-finish .tf-note {
  flex: 1 1 100%;
  margin: 0;
  text-align: center;
  color: #4E5968;
  font-size: 12.5px;
  line-height: 1.6;
  word-break: keep-all;
}
.tool-finish .tf-note:empty {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .tool-finish .tf-log { transition: none; }
}

/* 의료광고법 안내 한 줄 — 2026-08-17 은코치 「멘트 하나만」.
   결과를 가리지 않게 작고 차분하게. 경고색(빨강)은 쓰지 않는다 — 해당 없는 사장님이 대부분이라
   놀라게 할 이유가 없고, 해당하는 분께는 읽히기만 하면 된다. */
.tool-finish .tf-medical {
  flex-basis: 100%;
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: #6B7684;
  word-break: keep-all;
  text-align: left;
}
