/*
 * SmartBranch marketing pages — stylesheet.
 * Loaded only on pages using a SmartBranch page template.
 * Self-contained: no external fonts, no CDN, no trackers.
 */

/* ==========================================================================
   1. Tokens
   ========================================================================== */

:root {
  /* Colour */
  --ink:          #0B1A15;
  --ink-soft:     #43574E;
  --ink-faint:    #7A8C84;
  --cream:        #FBF9F4;
  --cream-2:      #F2EEE5;
  --emerald:      #0F7B57;
  --emerald-lift: #14A374;
  --emerald-wash: #E8F3EE;
  --amber:        #E9A23B;
  --amber-wash:   #FBF0DC;
  --white:        #FFFFFF;
  --line:         rgba(11, 26, 21, .12);
  --line-soft:    rgba(11, 26, 21, .07);

  /* Type */
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, "Noto Sans Hebrew", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Space */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  /* Applied to both edges, so the gap between two adjacent sections is double
     this. Kept deliberately modest for that reason. */
  --section: clamp(3rem, 6.5vw, 5.5rem);
  --radius: 16px;
  --radius-lg: 24px;

  /* Depth */
  --shadow-sm: 0 1px 2px rgba(11,26,21,.05), 0 2px 8px rgba(11,26,21,.04);
  --shadow:    0 2px 4px rgba(11,26,21,.04), 0 12px 32px rgba(11,26,21,.08);
  --shadow-lg: 0 4px 8px rgba(11,26,21,.04), 0 24px 64px rgba(11,26,21,.12);
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--emerald); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--emerald-lift); }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.12;
  letter-spacing: -.022em;
  font-weight: 680;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 6.2vw, 4.1rem); letter-spacing: -.032em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
p  { margin: 0 0 1.1em; text-wrap: pretty; }

::selection { background: var(--emerald); color: #fff; }

:focus-visible {
  outline: 2.5px solid var(--emerald-lift);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px;
  background: var(--ink); color: #fff;
  padding: .75rem 1.25rem; border-radius: 0 0 8px 0; z-index: 999;
}
.skip-link:focus { left: 0; top: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   3. Layout primitives
   ========================================================================== */

.wrap { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 760px; }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 620; letter-spacing: .09em;
  text-transform: uppercase; color: var(--emerald);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 20px; height: 1.5px; background: var(--emerald); border-radius: 2px;
}

.lede { font-size: clamp(1.05rem, 1.9vw, 1.28rem); color: var(--ink-soft); max-width: 62ch; }
.section-head { max-width: 64ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* ==========================================================================
   4. Buttons
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.6rem;
  border-radius: 999px; border: 1.5px solid transparent;
  font: inherit; font-size: .97rem; font-weight: 600; letter-spacing: -.005em;
  text-decoration: none; cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .18s, background .18s, color .18s, border-color .18s;
}
.btn:hover { transform: translateY(-1.5px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--emerald); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--emerald-lift); color: #fff; box-shadow: var(--shadow); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--white); color: var(--ink); border-color: rgba(11,26,21,.24); }

.btn--onDark { background: var(--white); color: var(--ink); }
.btn--onDark:hover { background: var(--cream); color: var(--ink); }

.btn--lg { padding: 1.1rem 2rem; font-size: 1.03rem; }

/* ==========================================================================
   5. Header / nav
   ========================================================================== */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,249,244,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.is-stuck { border-bottom-color: var(--line-soft); box-shadow: 0 1px 20px rgba(11,26,21,.05); }

.nav { display: flex; align-items: center; gap: 2rem; height: 74px; }
.nav__links { display: flex; align-items: center; gap: 1.9rem; margin-left: auto; }
.nav__links a {
  color: var(--ink-soft); text-decoration: none;
  font-size: .95rem; font-weight: 520;
  transition: color .16s;
}
.nav__links a:hover { color: var(--ink); }
/* .nav__links a beats .btn--primary on specificity, so the CTA needs its
   colours restated here or it renders dark-on-green. */
.nav__links a.btn--primary,
.nav__links a.btn--primary:hover { color: #fff; }
.nav__cta { margin-left: .5rem; }

.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__name { font-size: 1.16rem; font-weight: 680; letter-spacing: -.028em; }

.nav__toggle {
  display: none; margin-left: auto;
  background: none; border: 1.5px solid var(--line); border-radius: 10px;
  width: 42px; height: 42px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav__toggle span { display: block; width: 17px; height: 1.6px; background: var(--ink); position: relative; }
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.6px; background: var(--ink);
}
.nav__toggle span::before { top: -5.5px; }
.nav__toggle span::after  { top: 5.5px; }

@media (max-width: 860px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute; inset: 74px 0 auto; margin: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.5rem;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: .85rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .nav__cta { margin: 1rem 0 0; }
}

/* ==========================================================================
   6. Hero
   ========================================================================== */

.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(4rem, 9vw, 7rem); }
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto; height: 720px; z-index: 0;
  background:
    radial-gradient(58% 52% at 22% 30%, rgba(20,163,116,.13), transparent 70%),
    radial-gradient(46% 46% at 82% 18%, rgba(233,162,59,.15), transparent 70%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: 1.1rem; }
.hero .lede { margin-bottom: 2rem; font-size: clamp(1.08rem, 2vw, 1.32rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }
.hero__note { margin-top: 1.5rem; font-size: .9rem; color: var(--ink-faint); }

/* Highlighter drawn as a background gradient on the text itself — stays locked
   to the baseline at any font size and needs no z-index games. */
.hl {
  background-image: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(233, 162, 59, .48) 60%,
    rgba(233, 162, 59, .48) 87%,
    transparent 87%
  );
  background-repeat: no-repeat;
  padding-inline: .04em;
}

/* ==========================================================================
   7. Pipeline animation (hero visual)
   ========================================================================== */

.pipe {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  display: grid; gap: .9rem;
}
.pipe__bar { display: flex; align-items: center; gap: .4rem; padding-bottom: .95rem; border-bottom: 1px solid var(--line-soft); }
.pipe__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cream-2); }
.pipe__label { margin-left: auto; font-size: .72rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-faint); }

/* Every step stays legible; the active one is signalled by its surface and
   number chip, not by dimming the others into unreadability. */
.pipe__step {
  display: grid; grid-template-columns: 30px 1fr; gap: .85rem; align-items: start;
  padding: .8rem; border-radius: 12px;
  border: 1px solid transparent;
  transition: background .5s, border-color .5s;
}
.pipe__step.is-live { background: var(--cream); border-color: var(--line-soft); }

.pipe__num {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  display: grid; place-items: center;
  background: var(--cream-2); color: var(--ink-soft);
  font-size: .8rem; font-weight: 680;
  transition: background .5s, color .5s;
}
.pipe__step.is-live .pipe__num { background: var(--emerald); color: #fff; }

.pipe__t { font-size: .93rem; font-weight: 620; line-height: 1.35; }
.pipe__d { font-size: .84rem; color: var(--ink-soft); line-height: 1.5; margin-top: .12rem; }
.pipe__d code {
  font-family: var(--mono); font-size: .78rem;
  background: var(--emerald-wash); color: var(--emerald);
  padding: .1rem .3rem; border-radius: 4px;
}

.pipe__step.is-live .pipe__t { color: var(--ink); }

/* the little WhatsApp-ish approval chip */
.chip-wa {
  display: inline-flex; align-items: center; gap: .38rem;
  background: #E7F7EE; color: #0B7A3E;
  font-size: .76rem; font-weight: 620;
  padding: .25rem .55rem; border-radius: 999px; margin-top: .45rem;
}
.chip-wa::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #16B45C; }

@media (prefers-reduced-motion: no-preference) {
  /* Children 2..5 are the four steps (child 1 is the title bar). */
  .pipe__step { animation: pipeCycle 12s infinite; }
  .pipe__step .pipe__num { animation: pipeNum 12s infinite; }

  .pipe__step:nth-child(2), .pipe__step:nth-child(2) .pipe__num { animation-delay: 0s; }
  .pipe__step:nth-child(3), .pipe__step:nth-child(3) .pipe__num { animation-delay: 3s; }
  .pipe__step:nth-child(4), .pipe__step:nth-child(4) .pipe__num { animation-delay: 6s; }
  .pipe__step:nth-child(5), .pipe__step:nth-child(5) .pipe__num { animation-delay: 9s; }

  @keyframes pipeCycle {
    0%, 2%    { background: transparent;  border-color: transparent; }
    5%, 22%   { background: var(--cream); border-color: var(--line-soft); }
    26%, 100% { background: transparent;  border-color: transparent; }
  }

  @keyframes pipeNum {
    0%, 2%    { background: var(--cream-2); color: var(--ink-soft); }
    5%, 22%   { background: var(--emerald); color: #fff; }
    26%, 100% { background: var(--cream-2); color: var(--ink-soft); }
  }
}

/* ==========================================================================
   8. Stat strip
   ========================================================================== */

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft);
         border-block: 1px solid var(--line-soft); }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: var(--cream); padding: 1.75rem 1.25rem; text-align: center; }
.stat__n { font-size: clamp(1.5rem, 3vw, 2.05rem); font-weight: 700; letter-spacing: -.03em; color: var(--emerald); }
.stat__l { font-size: .83rem; color: var(--ink-soft); margin-top: .3rem; line-height: 1.45; }

/* ==========================================================================
   9. Cards / grids
   ========================================================================== */

.grid { display: grid; gap: 1.25rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s, border-color .22s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line); }
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

.card__icon {
  width: 42px; height: 42px; border-radius: 12px; margin-bottom: 1.1rem;
  display: grid; place-items: center;
  background: var(--emerald-wash); color: var(--emerald);
}
.card__icon svg { width: 21px; height: 21px; }
.card--amber .card__icon { background: var(--amber-wash); color: #A9711A; }

/* Problem / contrast panel */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }
.panel { border-radius: var(--radius); padding: 1.9rem; border: 1px solid var(--line-soft); }
.panel--bad { background: var(--white); }
.panel--good { background: var(--ink); color: var(--cream); border-color: transparent; }
.panel--good h3 { color: #fff; }
.panel--good p, .panel--good li { color: rgba(251,249,244,.76); }
.panel__tag {
  display: inline-block; font-size: .74rem; font-weight: 640; letter-spacing: .07em;
  text-transform: uppercase; padding: .28rem .6rem; border-radius: 6px; margin-bottom: 1rem;
}
.panel--bad .panel__tag  { background: var(--cream-2); color: var(--ink-soft); }
.panel--good .panel__tag { background: rgba(20,163,116,.22); color: #5FD9AC; }

.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.ticks li { position: relative; padding-left: 1.75rem; font-size: .95rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--emerald-lift);
}
.panel--bad .ticks li::before { background: var(--ink-faint); }

/* ==========================================================================
   10. Steps (how it works)
   ========================================================================== */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: s; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: s; content: counter(s);
  position: absolute; top: 0; left: 0;
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--cream);
  font-size: .85rem; font-weight: 680;
}
.step::after {
  content: ""; position: absolute; top: 17px; left: 44px; right: -1.25rem; height: 1.5px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.step:last-child::after { display: none; }
@media (max-width: 900px) { .step:nth-child(2n)::after { display: none; } }
@media (max-width: 560px) { .step::after { display: none; } }
.step h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.step p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   11. Dark CTA band
   ========================================================================== */

.band {
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center; position: relative; overflow: hidden;
}
.band::before {
  content: ""; position: absolute; inset: auto -20% -60% ; height: 380px;
  background: radial-gradient(50% 60% at 50% 100%, rgba(20,163,116,.35), transparent 70%);
  pointer-events: none;
}
.band > * { position: relative; }
.band h2 { color: #fff; }
.band p { color: rgba(251,249,244,.74); max-width: 54ch; margin-inline: auto; }
.band__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.9rem; }

/* ==========================================================================
   12. Footer
   ========================================================================== */

.site-footer { background: var(--ink); color: rgba(251,249,244,.7); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; margin-top: var(--section); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(251,249,244,.12); }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
.site-footer .brand { color: #fff; }
.footer__blurb { font-size: .92rem; max-width: 34ch; margin-top: 1rem; color: rgba(251,249,244,.6); }
.footer__h { font-size: .78rem; font-weight: 640; letter-spacing: .09em; text-transform: uppercase; color: rgba(251,249,244,.45); margin-bottom: 1rem; }
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.footer__list a { color: rgba(251,249,244,.72); text-decoration: none; font-size: .93rem; }
.footer__list a:hover { color: #fff; text-decoration: underline; }
.footer__base { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-top: 1.75rem; font-size: .86rem; color: rgba(251,249,244,.5); }

/* ==========================================================================
   13. Long-form / legal pages
   ========================================================================== */

.page-hero { padding-block: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 3vw, 2.5rem); }
.page-hero h1 { margin-bottom: .6rem; }
.page-hero .meta { font-size: .9rem; color: var(--ink-faint); }

.prose { max-width: 74ch; }
.prose h2 {
  font-size: clamp(1.32rem, 2.4vw, 1.6rem); margin-top: 2.6rem; margin-bottom: .8rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line-soft);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: 1.08rem; margin-top: 1.9rem; margin-bottom: .5rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose li { margin-bottom: .5rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin-bottom: 1.2rem; }
.prose strong { color: var(--ink); font-weight: 640; }
.prose hr { border: 0; border-top: 1px solid var(--line-soft); margin: 2.5rem 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .92rem; }
.prose th, .prose td { text-align: left; padding: .75rem .9rem; border: 1px solid var(--line-soft); vertical-align: top; }
.prose th { background: var(--cream-2); font-weight: 640; color: var(--ink); }
.prose td { color: var(--ink-soft); }
.prose-scroll { overflow-x: auto; }

/* Draft / review notice */
.notice {
  border-radius: var(--radius); padding: 1.25rem 1.4rem; margin-bottom: 2.5rem;
  background: var(--amber-wash); border: 1px solid rgba(233,162,59,.42);
  font-size: .93rem; color: #6B4708;
}
.notice strong { color: #4A3105; }
.notice p:last-child { margin-bottom: 0; }

/* Unfilled legal placeholder — deliberately loud, so a draft can never be
   mistaken for a finished document. Disappears when the value is filled in. */
.ph {
  background: #FFE9E4; color: #A6321A;
  font-family: var(--mono); font-size: .87em; font-weight: 600;
  padding: .08em .38em; border-radius: 4px;
  border: 1px dashed rgba(166,50,26,.42);
  white-space: normal;
}

/* TOC */
.toc { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin-bottom: 2.5rem; }
.toc__h { font-size: .78rem; font-weight: 640; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .9rem; }
.toc ol { margin: 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
@media (max-width: 620px) { .toc ol { columns: 1; } }
.toc li { margin-bottom: .4rem; font-size: .92rem; }
.toc a { color: var(--ink-soft); text-decoration: none; }
.toc a:hover { color: var(--emerald); text-decoration: underline; }

/* ==========================================================================
   14. Motion
   ========================================================================== */

/* Reveal-on-scroll is opt-in via the .js class, which an inline script in the
   head sets immediately. Without it every .reveal block stays at its natural
   opacity — so if the script fails, is blocked, or never runs, the page is
   still fully readable rather than a blank column. */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
  .js .reveal.is-in { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  /* No cycling: step 1 keeps its .is-live styling from the markup and the rest
     stay neutral. Marking them all active would read as four current steps. */
}

/* ==========================================================================
   15. RTL groundwork (Hebrew) — see README before enabling
   ========================================================================== */

[dir="rtl"] .eyebrow::before { transform: scaleX(-1); }
[dir="rtl"] .ticks li { padding-left: 0; padding-right: 1.75rem; }
[dir="rtl"] .ticks li::before { left: auto; right: 0; }
[dir="rtl"] .step::before { left: auto; right: 0; }
[dir="rtl"] .step::after { left: -1.25rem; right: 44px; background: linear-gradient(270deg, var(--line), transparent); }
[dir="rtl"] .prose ul, [dir="rtl"] .prose ol { padding-left: 0; padding-right: 1.3rem; }
[dir="rtl"] .prose th, [dir="rtl"] .prose td { text-align: right; }
