/* [2026-08-28] 신규 생성 — 무료 도구 페이지 하단 설명·FAQ 공용 스타일 (검색·AI 답변 노출용 본문) */

.ti-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 16px 60px;
  font-family: 'Pretendard', -apple-system, sans-serif;
  color: #374151;
}
.ti-wrap * { box-sizing: border-box; }

.ti-section { margin-top: 28px; }

.ti-h2 {
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.ti-h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
}

.ti-lead {
  font-size: 15px;
  line-height: 1.85;
  color: #374151;
  margin: 0 0 16px;
}
.ti-lead b { color: #111827; font-weight: 700; }

/* 이럴 때 씁니다 */
.ti-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.ti-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.75;
  color: #4b5563;
}
.ti-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a78bfa;
}

/* 쓰는 순서 */
.ti-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: ti-step;
}
.ti-steps li {
  counter-increment: ti-step;
  position: relative;
  padding: 0 0 14px 34px;
  font-size: 14px;
  line-height: 1.75;
  color: #4b5563;
}
.ti-steps li::before {
  content: counter(ti-step);
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f3e8ff;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ti-steps li:last-child { padding-bottom: 0; }

/* 자주 묻는 질문 */
.ti-faq {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.ti-faq-item {
  padding: 16px 18px;
  border-bottom: 1px solid #f3f4f6;
}
.ti-faq-item:last-child { border-bottom: none; }
.ti-faq-q {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.ti-faq-q::before {
  content: 'Q';
  color: #7c3aed;
  font-weight: 800;
  flex-shrink: 0;
}
.ti-faq-a {
  font-size: 14px;
  line-height: 1.85;
  color: #4b5563;
  margin: 0;
  padding-left: 18px;
}

/* 다른 생성기로 넘어가는 안내 링크 */
.ti-related {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border: 1px solid #e9d5ff;
  border-radius: 10px;
  background: #faf5ff;
  color: #7c3aed;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.ti-related:hover { background: #f3e8ff; border-color: #d8b4fe; color: #6d28d9; }
.ti-related span { font-size: 17px; line-height: 1; }

@media (max-width: 768px) {
  .ti-wrap { padding: 4px 12px 40px; }
  .ti-related { width: 100%; justify-content: space-between; }
  .ti-section { margin-top: 22px; }
  .ti-h2 { font-size: 17px; }
  .ti-list { grid-template-columns: 1fr; gap: 8px; }
  .ti-faq-item { padding: 14px; }
}
