/* ============================================================
   Ujeebu v3 — Tutorial detail pages
   Self-contained skin for the .tutorial-page markup. Every rule
   is scoped under .tutorial-page so it never leaks into the v3
   header / footer that now wrap these pages.
   Tokens (--uj-*) come from ujeebu-v3.css (:root).
   ============================================================ */

.tutorial-page {
  --tut-code-bg:   #0B1220;
  --tut-code-bar:  #111827;
  --tut-code-line: #1F2937;
  --tut-code-fg:   #E5E7EB;
  --tut-code-mut:  #9CA3AF;
  font-family: var(--uj-sans);
  color: var(--uj-ink);
  background: var(--uj-surface);
}
.tutorial-page *, .tutorial-page *::before, .tutorial-page *::after { box-sizing: border-box; }
.tutorial-page img { max-width: 100%; }

/* ===================== Hero banner ===================== */
.tutorial-banner {
  background: var(--uj-surface);
  border-bottom: 1px solid var(--uj-line);
}
.tutorial-banner-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 28px 56px;
}
/* v3 eyebrow — dot + accent uppercase label (no fill, matches .uj-eyebrow) */
.banner-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--uj-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--uj-accent);
}
.banner-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.banner-label svg { display: none; }
.banner-title {
  margin: 16px 0 0;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--uj-ink);
  text-wrap: balance;
}
.banner-description {
  margin: 22px 0 0;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--uj-muted);
}
.banner-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.banner-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--uj-mono);
  font-size: 12px;
  color: var(--uj-ink2);
  background: var(--uj-surface);
  border: 1px solid var(--uj-line);
  padding: 7px 12px;
  border-radius: 8px;
}
.banner-meta-item svg { width: 14px; height: 14px; color: var(--uj-accent); }

/* ===================== Layout ===================== */
.tutorial-wrapper {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 28px 96px;
}
.tutorial-sidebar { position: relative; }
.tutorial-main { min-width: 0; }

/* ===================== Table of contents ===================== */
.toc-container {
  position: sticky;
  top: 92px;
  border: 1px solid var(--uj-line);
  border-radius: var(--uj-r-lg);
  background: var(--uj-surface);
  padding: 18px 14px;
  box-shadow: var(--uj-shadow-card);
}
.toc-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--uj-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--uj-muted);
  padding: 4px 10px 12px;
}
.toc-title svg { width: 14px; height: 14px; }
.toc-list { list-style: none; margin: 0; padding: 0; }
.toc-item { margin: 2px 0; }
.toc-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--uj-muted);
  transition: background .15s ease, color .15s ease;
}
.toc-link:hover { background: var(--uj-line2); color: var(--uj-ink); }
.toc-step {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--uj-surface);
  border: 1px solid var(--uj-line);
  font-family: var(--uj-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--uj-muted);
}
.toc-link.active { background: var(--uj-accent-soft); color: var(--uj-accent-ink); font-weight: 600; }
.toc-link.active .toc-step { background: var(--uj-accent); border-color: var(--uj-accent); color: #fff; }

/* ===================== Breadcrumb ===================== */
.tutorial-hero { margin-bottom: 8px; }
.tutorial-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--uj-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--uj-muted2);
}
.tutorial-breadcrumb a { color: var(--uj-muted); text-decoration: none; }
.tutorial-breadcrumb a:hover { color: var(--uj-accent); }
.tutorial-breadcrumb svg { width: 11px; height: 11px; color: var(--uj-muted2); }

/* ===================== Section ===================== */
.tutorial-section { margin-top: 56px; scroll-margin-top: 92px; }
.tutorial-section:first-of-type { margin-top: 28px; }
.section-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.section-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--uj-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--uj-mono);
  font-size: 18px;
  font-weight: 600;
}
.section-title {
  margin: 0;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--uj-ink);
}

/* ===================== Section content ===================== */
.section-content p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--uj-ink2);
}
.section-content h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 34px 0 16px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--uj-ink);
}
.section-content h3::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: var(--uj-accent);
}
.section-content ul, .section-content ol {
  margin: 0 0 18px;
  padding: 0 0 0 4px;
  list-style: none;
}
.section-content ol { counter-reset: tut-ol; }
.section-content li {
  position: relative;
  padding-left: 26px;
  margin: 9px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--uj-ink2);
}
.section-content ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--uj-accent);
}
.section-content ol li { counter-increment: tut-ol; }
.section-content ol li::before {
  content: counter(tut-ol);
  position: absolute;
  left: 0;
  top: 1px;
  font-family: var(--uj-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--uj-accent-ink);
}

/* inline code */
.inline-code, .tutorial-page code:not([class*="language-"]) {
  font-family: var(--uj-mono);
  font-size: .88em;
  color: var(--uj-accent-ink);
  background: var(--uj-accent-soft);
  border: 1px solid #FCD9BE;
  padding: 1px 6px;
  border-radius: 5px;
}

/* ===================== Code blocks ===================== */
.code-wrapper {
  margin: 22px 0;
  background: var(--tut-code-bg);
  border: 1px solid var(--tut-code-line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--uj-shadow-card);
}
.code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--tut-code-bar);
  border-bottom: 1px solid var(--tut-code-line);
}
.code-lang {
  font-family: var(--uj-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--tut-code-mut);
}
.code-actions { display: flex; gap: 8px; }
/* both `.code-btn .copy-btn` and bare `.copy-btn` markup appear across the
   11 views — style both so no button falls back to the white browser default */
.code-btn, .copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: transparent;
  color: var(--tut-code-mut);
  border: 1px solid #374151;
  font-family: var(--uj-mono);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.code-btn svg, .copy-btn svg { width: 13px; height: 13px; }
.code-btn:hover, .copy-btn:hover { color: #fff; border-color: #4B5563; }
.code-btn.copied, .copy-btn.copied { background: var(--uj-accent); border-color: var(--uj-accent); color: #fff; }
.code-content { overflow: auto; max-height: 560px; }
.code-content pre {
  margin: 0;
  padding: 18px 22px;
  background: var(--tut-code-bg);
  overflow: visible;
}
/* dark scrollbars so they blend into the code block (no white strip) */
.code-content { scrollbar-width: thin; scrollbar-color: #374151 transparent; }
.code-content::-webkit-scrollbar { width: 10px; height: 10px; }
.code-content::-webkit-scrollbar-track { background: var(--tut-code-bg); }
.code-content::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 8px;
  border: 2px solid var(--tut-code-bg);
}
.code-content::-webkit-scrollbar-thumb:hover { background: #4B5563; }
.code-content::-webkit-scrollbar-corner { background: var(--tut-code-bg); }
.code-tabs { scrollbar-width: none; }
.code-tabs::-webkit-scrollbar { display: none; }
.code-content pre code,
.tutorial-page pre code[class*="language-"] {
  font-family: var(--uj-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--tut-code-fg);
  background: none;
  border: 0;
  padding: 0;
  white-space: pre;
}

/* code tabs */
.code-tabs {
  display: flex;
  background: var(--tut-code-bar);
  border-bottom: 1px solid var(--tut-code-line);
  overflow-x: auto;
}
.code-tab {
  padding: 12px 18px;
  background: transparent;
  color: var(--tut-code-mut);
  font-family: var(--uj-mono);
  font-size: 12px;
  font-weight: 500;
  border: none;
  border-right: 1px solid var(--tut-code-line);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
.code-tab:hover { color: #fff; }
.code-tab.active {
  background: var(--tut-code-bg);
  color: #fff;
  border-bottom-color: var(--uj-accent);
}
.code-panel { display: none; }
.code-panel.active { display: block; }

/* ===================== Data table ===================== */
.data-table-wrapper {
  margin: 22px 0;
  border: 1px solid var(--uj-line);
  border-radius: var(--uj-r-lg);
  overflow: hidden;
}
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th {
  text-align: left;
  padding: 12px 18px;
  background: var(--uj-paper);
  border-bottom: 1px solid var(--uj-line);
  font-family: var(--uj-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--uj-muted);
}
.data-table td {
  padding: 13px 18px;
  border-top: 1px solid var(--uj-line2);
  color: var(--uj-ink2);
  vertical-align: top;
}
.data-table tr:hover td { background: var(--uj-paper); }
.data-table code {
  font-family: var(--uj-mono);
  font-size: 12.5px;
  color: var(--uj-accent-ink);
  background: var(--uj-accent-soft);
  padding: 2px 7px;
  border-radius: 4px;
  border: 0;
}

/* ===================== Alert / callout ===================== */
.alert-box {
  display: flex;
  gap: 13px;
  padding: 16px 18px;
  margin: 22px 0;
  border-radius: var(--uj-r-lg);
  border: 1px solid;
}
/* icon sits in a soft tinted tile, aligned to the title */
.alert-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.alert-icon svg { width: 15px; height: 15px; }
.alert-content { min-width: 0; padding-top: 1px; }
.alert-title {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.alert-text { margin: 0; font-size: 14px; line-height: 1.62; }
.alert-info    { background: var(--uj-blue-soft);  border-color: #DBEAFE; }
.alert-info .alert-icon { background: #DBEAFE; color: #1D4ED8; }
.alert-info .alert-title { color: #1E3A8A; }
.alert-info .alert-text  { color: #1E40AF; }
.alert-success { background: var(--uj-green-soft); border-color: #BBF7D0; }
.alert-success .alert-icon { background: #BBF7D0; color: #15803D; }
.alert-success .alert-title { color: #14532D; }
.alert-success .alert-text  { color: #166534; }
.alert-warning { background: #FFFBEB; border-color: #FDE68A; }
.alert-warning .alert-icon { background: #FDE68A; color: #B45309; }
.alert-warning .alert-title { color: #78350F; }
.alert-warning .alert-text  { color: #92400E; }

/* ===================== Learn grid ===================== */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.learn-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--uj-line);
  border-radius: var(--uj-r-md);
  background: var(--uj-surface);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.learn-card:hover {
  border-color: #FCD9BE;
  box-shadow: var(--uj-shadow-card);
  transform: translateY(-1px);
}
.learn-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--uj-accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.learn-icon svg { width: 17px; height: 17px; color: var(--uj-accent); }
.learn-text { font-size: 14px; font-weight: 500; color: var(--uj-ink2); }

/* ===================== Extract type cards ===================== */
.extract-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.extract-type-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--uj-line);
  border-radius: var(--uj-r-lg);
  background: var(--uj-surface);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.extract-type-card:hover {
  border-color: #FCD9BE;
  box-shadow: var(--uj-shadow-card);
  transform: translateY(-2px);
}
.extract-type-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.extract-type-icon svg { width: 20px; height: 20px; }
.extract-type-name { margin-bottom: 5px; }
.extract-type-desc { font-size: 13.5px; line-height: 1.55; color: var(--uj-muted); }

/* ===================== Best practice cards ===================== */
.best-practices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 18px 0;
}
.practice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--uj-line);
  border-radius: var(--uj-r-lg);
  background: var(--uj-surface);
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.practice-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--uj-accent);
}
.practice-card:hover {
  box-shadow: var(--uj-shadow-card);
  transform: translateY(-2px);
}
.practice-card:hover .practice-icon { background: var(--uj-accent); color: #fff; }
.practice-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.practice-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--uj-accent-soft);
  color: var(--uj-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, color .15s ease;
}
.practice-icon svg { width: 19px; height: 19px; }
.practice-number {
  font-family: var(--uj-mono);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--uj-line);
}
.practice-title { margin: 0; font-size: 16px; font-weight: 700; color: var(--uj-ink); }
.practice-description { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--uj-muted); }
.practice-tag {
  align-self: flex-start;
  font-family: var(--uj-mono);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--uj-line2);
  color: var(--uj-muted);
}
.practice-card-primary::before    { background: var(--uj-accent); }
.practice-card-secondary::before  { background: var(--uj-blue); }
.practice-card-tertiary::before   { background: var(--uj-green); }
.practice-card-quaternary::before { background: #9333EA; }
.practice-card-primary .practice-tag    { background: var(--uj-accent-soft); color: var(--uj-accent-ink); }
.practice-card-secondary .practice-tag  { background: var(--uj-blue-soft); color: #1E40AF; }
.practice-card-tertiary .practice-tag   { background: var(--uj-green-soft); color: #166534; }
.practice-card-quaternary .practice-tag { background: #F3E8FF; color: #6B21A8; }

/* ===================== Legal notice ===================== */
.legal-notice-box {
  margin: 28px 0 0;
  padding: 20px 22px;
  border: 1px solid var(--uj-line);
  border-left: 3px solid var(--uj-muted2);
  border-radius: var(--uj-r-md);
  background: var(--uj-paper);
}
.legal-notice-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.legal-icon { color: var(--uj-muted); }
.legal-icon svg { width: 18px; height: 18px; display: block; }
.legal-title { margin: 0; font-size: 14px; font-weight: 700; color: var(--uj-ink2); }
.legal-text { margin: 0; font-size: 13.5px; line-height: 1.65; color: var(--uj-muted); }

/* ===================== FAQ ===================== */
.faq-item {
  padding: 18px 20px;
  margin: 12px 0;
  border: 1px solid var(--uj-line);
  border-radius: var(--uj-r-md);
  background: var(--uj-surface);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-item:hover { border-color: #FCD9BE; box-shadow: var(--uj-shadow-card); }
.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--uj-ink);
}
.faq-question::before {
  content: "Q";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--uj-accent-soft);
  color: var(--uj-accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--uj-mono);
  font-size: 12px;
  font-weight: 600;
}
.faq-answer { margin-top: 10px; padding-left: 32px; }
.faq-answer p { margin: 0 0 8px; font-size: 14.5px; line-height: 1.7; color: var(--uj-ink2); }
.faq-answer a { color: var(--uj-accent); text-decoration: none; }
.faq-answer a:hover { text-decoration: underline; }

/* ===================== CTA ===================== */
.cta-section {
  margin-top: 64px;
  padding: 48px 36px;
  border-radius: var(--uj-r-xl);
  background: var(--uj-ink);
  text-align: center;
}
.cta-title { margin: 0; font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.cta-text { margin: 12px 0 0; font-size: 15px; line-height: 1.6; color: var(--uj-muted2); }
.cta-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--uj-r-md);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease;
}
.cta-btn svg { width: 16px; height: 16px; }
/* scoped under .tutorial-page so the colours beat the global `.uj-v3 a`
   rule (which otherwise made the text inherit dark ink, invisible on the
   dark CTA, and flip to orange on hover). Matches site CTA behaviour. */
.tutorial-page .cta-btn-primary,
.tutorial-page .cta-btn-primary:hover { background: var(--uj-accent); color: #fff; }
.tutorial-page .cta-btn-primary:hover { background: var(--uj-accent2); }
.tutorial-page .cta-btn-secondary,
.tutorial-page .cta-btn-secondary:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.24);
}
.tutorial-page .cta-btn-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.36);
}

/* ===================== Tutorial nav ===================== */
.tutorial-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.nav-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--uj-line);
  border-radius: var(--uj-r-lg);
  background: var(--uj-surface);
  text-decoration: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.nav-card:hover {
  border-color: #FCD9BE;
  box-shadow: var(--uj-shadow-card);
  transform: translateY(-2px);
}
.nav-card-label {
  font-family: var(--uj-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--uj-muted2);
}
.nav-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--uj-ink);
}
.nav-card-title svg { width: 16px; height: 16px; color: var(--uj-accent); }

/* ===================== Prism syntax tokens (dark) ===================== */
.tutorial-page .token.comment,
.tutorial-page .token.prolog,
.tutorial-page .token.doctype,
.tutorial-page .token.cdata { color: #6B7280; font-style: italic; }
.tutorial-page .token.punctuation { color: #9CA3AF; }
.tutorial-page .token.property,
.tutorial-page .token.tag,
.tutorial-page .token.boolean,
.tutorial-page .token.number,
.tutorial-page .token.constant,
.tutorial-page .token.symbol,
.tutorial-page .token.deleted { color: #FBA774; }
.tutorial-page .token.selector,
.tutorial-page .token.attr-name,
.tutorial-page .token.string,
.tutorial-page .token.char,
.tutorial-page .token.builtin,
.tutorial-page .token.inserted { color: #86EFAC; }
.tutorial-page .token.operator,
.tutorial-page .token.entity,
.tutorial-page .token.url,
.tutorial-page .token.variable { color: #93C5FD; }
.tutorial-page .token.atrule,
.tutorial-page .token.attr-value,
.tutorial-page .token.function,
.tutorial-page .token.class-name { color: #C4B5FD; }
.tutorial-page .token.keyword { color: #F9A8D4; }
.tutorial-page .token.regex,
.tutorial-page .token.important { color: #FBBF24; }
.tutorial-page .token.important,
.tutorial-page .token.bold { font-weight: 700; }
.tutorial-page .token.italic { font-style: italic; }

/* ===================== Responsive ===================== */
@media (max-width: 960px) {
  .tutorial-wrapper { grid-template-columns: 1fr; gap: 0; }
  .tutorial-sidebar { display: none; }
  .tutorial-nav { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .tutorial-banner-content { padding: 48px 20px 40px; }
  .tutorial-wrapper { padding: 40px 20px 72px; }
  .section-header { gap: 14px; }
  .section-number { width: 38px; height: 38px; font-size: 16px; }
  .section-title { font-size: 22px; }
  .cta-section { padding: 36px 22px; }
}
