/* Khối giới thiệu + FAQ song ngữ cho trang editor/portal SPA — phục vụ Google/crawler
   đọc HTML gốc (xem giới hạn về khả năng cuộn tới trong ToolIntroSection.tsx). Không
   đổi trải nghiệm mặc định (app/portal vẫn full-viewport như cũ). Dùng biến màu global
   của App.css nên tự theo sáng/tối như phần còn lại của editor. */

.ti-section {
  background: var(--bg-app);
  border-top: 1px solid var(--border);
  padding: 40px 20px 56px;
}

.ti-inner {
  max-width: 720px;
  margin: 0 auto;
}

.ti-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}

.ti-h1 {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 14px;
}

.ti-p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 12px;
}

.ti-faq-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 28px 0 12px;
}

.ti-faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ti-faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2px 16px;
}

.ti-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 13px 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.ti-faq summary::-webkit-details-marker { display: none; }
.ti-faq summary::after {
  content: '+';
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.15s ease;
  flex: none;
}
.ti-faq details[open] summary::after { transform: rotate(45deg); }
.ti-faq p { margin: 0 0 14px; color: var(--text-secondary); font-size: 13.5px; line-height: 1.55; }

