/* ============================================================
   סוכנים במקביל, עיצוב מדריך זה בלבד.

   כל השאר מגיע מ-guides/guide-base.css, שנטען לפני הקובץ הזה.
   כאן יושבים רק שלושת הדברים שהעמוד הזה באמת צריך מעבר לבסיס:

     inline-code   לחמשת צ׳יפי הקוד בשורה, כולם לטיניים
     rtl-prompt    לחמשת מקטעי הפרומפט בעברית. מקטע הפקודה השישי
                   נשאר ltr ולא נוגע בכלל בכללים האלה
     page-note     להערת סיום, אם תתווסף כזאת

   הכללים הועתקו מ-guides/claude-usage-limits.css כמו שהם, רק עם
   החלפת שם ההיקף. לא נוסף כאן שום ערך צבע, גופן, רדיוס או צל.
   ============================================================ */

.guide-claude-code-subagents .inline-code{
  font-family:var(--font-mono);
  font-size:0.88em;
  background:var(--surface-sunk);
  border:1px solid var(--border);
  border-radius:4px;
  padding:1px 6px;
  direction:ltr;
  unicode-bidi:embed;
  display:inline-block;
  color:var(--ink);
  overflow-wrap:anywhere;
  word-break:break-word;
}

/* ---------- Hebrew prompt block, ported verbatim from guides/hyperframes.css.
   Same dark .code-block shell, but the content is Hebrew prose rather than a
   terminal command, so the direction flips back to rtl and the text wraps
   instead of scrolling. Nothing here introduces a new token value. ---------- */
.guide-claude-code-subagents .code-block.rtl-prompt pre{
  direction:rtl;
  text-align:start;
  white-space:pre-wrap;
  overflow-x:hidden;
}
.guide-claude-code-subagents .code-block.rtl-prompt::after{
  /* wrapped text never overflows horizontally, so the LTR blocks' edge-fade
     (which signals more content off-screen) doesn't apply here */
  display:none;
}
.guide-claude-code-subagents .code-block.rtl-prompt .copy-btn{
  inset-inline-start:auto;
  inset-inline-end:8px;
}
.guide-claude-code-subagents .code-block.rtl-prompt code{
  min-width:0;
  display:block;
}

/* ---------- Small closing note (page-bottom update note) ---------- */
.guide-claude-code-subagents .page-note{
  color:var(--ink-muted);
  font-size:0.84375rem;
  max-width:68ch;
  margin-top:8px;
  padding-top:20px;
  border-top:var(--border-w) solid var(--border);
}
