/*
 * short2014.css
 * Підключається ТІЛЬКИ для сторінок /short2014/
 * Доповнює основний CSS zarlit.com — не замінює його
 *
 * Підключення у PHP (додати до ntop.html або окремим include):
 *   <?php if (strpos($_SERVER['REQUEST_URI'], '/short2014/') !== false): ?>
 *   <link rel="stylesheet" href="/short2014/short2014.css">
 *   <?php endif; ?>
 *
 * Шрифти:
 *   Playfair Display — виразний серифний (тіло + заголовки)
 *   IBM Plex Sans    — геометричний гротеск (UI, лейбли, таблиці)
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,700&family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ══════════════════════════════════════════
   ЗМІННІ
   Обгортка .zl-short ізолює стилі від
   решти сторінки zarlit.com
══════════════════════════════════════════ */
.zl-short {
  --ink:         #18181b;
  --ink-mid:     #3f3f46;
  --ink-soft:    #71717a;
  --cream:       #fafaf9;
  --warm:        #f4f4f0;
  --border:      #e4e4e1;
  --accent:      #b45309;      /* бурштиновий */
  --accent-bg:   #fef3c7;
  --accent2:     #1d4ed8;      /* синій */
  --accent2-bg:  #eff6ff;
  --green:       #166534;
  --green-bg:    #f0fdf4;
  --purple:      #6d28d9;
  --purple-bg:   #f5f3ff;
  --gold:        #92400e;
  --gold-bg:     #fffbeb;
  --red:         #991b1b;
  --r:           6px;
  --font-body:   'Playfair Display', Georgia, serif;
  --font-ui:     'IBM Plex Sans', system-ui, sans-serif;
}


/* ══════════════════════════════════════════
   STICKY NAV — ПАНЕЛЬ АУДИТОРІЇ
══════════════════════════════════════════ */
.zl-short .audience-bar {
  position: sticky;
  top: 0;
  z-index: 100;
}
.zl-short .audience-inner {
  margin: 0;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
  padding: 0 24px;
}
.zl-short .audience-inner::-webkit-scrollbar { display: none; }

.zl-short .aud-btn {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 20px;
  border: none;
  background: none;
  color: var(--ink-soft);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
  letter-spacing: 0.2px;
}
.zl-short .aud-btn:hover { color: var(--ink); }
.zl-short .aud-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ══════════════════════════════════════════
   МАКЕТ
══════════════════════════════════════════ */
.zl-short .main {
  margin: 0 auto;
  padding: 36px 24px 80px;
}

/* ══════════════════════════════════════════
   ANSWER BOX
══════════════════════════════════════════ */
.zl-short .answer-box {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--accent2);
  border-radius: var(--r);
  padding: 26px 30px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}
.zl-short .answer-box::after {
  content: none;
}
.zl-short .answer-box-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 18px;
}
.zl-short .answer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media(max-width:520px){ .zl-short .answer-grid { grid-template-columns: 1fr; } }
.zl-short .answer-item dt {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.zl-short .answer-item dd {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}
.zl-short .answer-moral {
  grid-column: 1/-1;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.zl-short .answer-moral dt {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.zl-short .answer-moral dd {
  font-family: var(--font-body);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
  color: var(--accent2);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   СЕКЦІЇ
══════════════════════════════════════════ */
.zl-short .section { margin-bottom: 40px; }
.zl-short .section-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.zl-short .section-title::before {
  content: '';
  display: block;
  width: 3px; height: 13px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   ПЕРЕКАЗ — КОНТРОЛИ
══════════════════════════════════════════ */
.zl-short .retelling-controls {
  display: flex;
  gap: 7px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.zl-short .layer-btn {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.18s;
}
.zl-short .layer-btn:hover { border-color: var(--ink-soft); color: var(--ink); }
.zl-short .layer-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }

.zl-short .length-switch {
  display: flex;
  background: var(--warm);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 3px;
  margin-left: auto;
}
.zl-short .len-btn {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 13px;
  border-radius: 16px;
  border: none;
  background: none;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.18s;
}
.zl-short .len-btn.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

/* ══════════════════════════════════════════
   ТЕКСТ ПЕРЕКАЗУ
══════════════════════════════════════════ */
.zl-short .retelling-text {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 28px 32px;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.9;
  color: var(--ink-mid);
}
.zl-short .retelling-text p { margin-bottom: 1.1em; }
.zl-short .retelling-text p:last-child { margin-bottom: 0; }
.zl-short .retelling-text strong { color: var(--ink); font-weight: 700; }

.zl-short .retelling-short { display: none; }
.zl-short .retelling-text.mode-short .retelling-full  { display: none; }
.zl-short .retelling-text.mode-short .retelling-short { display: block; }

/* шари */
.zl-short .seg { border-radius: 3px; padding: 1px 1px; transition: background 0.2s; }
body.show-exp  .zl-short .seg[data-layer="exp"]  { background: #fef3c7; }
body.show-clim .zl-short .seg[data-layer="clim"] { background: #fee2e2; }
body.show-res  .zl-short .seg[data-layer="res"]  { background: #dcfce7; }
body.show-char .zl-short .seg[data-layer="char"] { background: #ede9fe; }

.zl-short .layer-legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 11px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
}
.zl-short .layer-legend span { display: inline-flex; align-items: center; gap: 6px; }
.zl-short .dot { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }

/* ══════════════════════════════════════════
   ПОРІВНЯЛЬНА ТАБЛИЦЯ
══════════════════════════════════════════ */
.zl-short .heroes-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
}
.zl-short .heroes-table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
  background: #fff;
  font-family: var(--font-ui);
}
@media(max-width:480px) {
  .zl-short .heroes-table th,
  .zl-short .heroes-table td { padding: 9px 10px; font-size: 12px; }
  .zl-short .heroes-table td:first-child { font-size: 10px; }
}
.zl-short .heroes-table th {
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  background: var(--warm);
  border-bottom: 1.5px solid var(--border);
  color: var(--ink-mid);
}
.zl-short .heroes-table th:nth-child(2) { color: var(--green); }
.zl-short .heroes-table th:nth-child(3) { color: var(--red); }
.zl-short .heroes-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mid);
  vertical-align: top;
}
.zl-short .heroes-table tr:last-child td { border-bottom: none; }
.zl-short .heroes-table td:first-child {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-soft);
  background: var(--warm);
  border-right: 1.5px solid var(--border);
  white-space: nowrap;
}
.zl-short .heroes-table td.good { color: var(--green); font-weight: 600; }
.zl-short .heroes-table td.bad  { color: var(--red);   font-weight: 600; }

/* ══════════════════════════════════════════
   СИМВОЛІКА
══════════════════════════════════════════ */
.zl-short .symbols-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media(max-width:500px){ .zl-short .symbols-grid { grid-template-columns: 1fr; } }
.zl-short .symbol-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 20px 22px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.zl-short .symbol-card:hover {
  border-color: var(--accent);
  box-shadow: 0 3px 14px rgba(180,83,9,0.1);
}
.zl-short .symbol-icon { font-size: 30px; margin-bottom: 9px; line-height: 1; }
.zl-short .symbol-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.zl-short .symbol-short {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.5;
}
.zl-short .symbol-full {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-mid);
}
.zl-short .symbol-card.open .symbol-full { display: block; }

/* ══════════════════════════════════════════
   АНАЛОГИ У СВІТІ
══════════════════════════════════════════ */
.zl-short .world-list { display: flex; flex-direction: column; gap: 10px; }
.zl-short .world-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.zl-short .world-flag { font-size: 30px; line-height: 1; flex-shrink: 0; }
.zl-short .world-title {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.zl-short .world-desc {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.6;
}
.zl-short .world-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  margin-top: 6px;
}
.zl-short .world-tag.same { background: var(--green-bg); color: var(--green); }
.zl-short .world-tag.diff { background: var(--accent-bg); color: var(--accent); }

/* ══════════════════════════════════════════
   ТРЕНАЖЕР
══════════════════════════════════════════ */
.zl-short .trainer-intro {
  background: var(--gold-bg);
  border: 1.5px solid #fcd34d;
  border-radius: var(--r);
  padding: 15px 20px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
}
.zl-short .questions-list { display: flex; flex-direction: column; gap: 10px; }
.zl-short .q-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.18s;
}
.zl-short .q-card:hover { border-color: #a1a1aa; }
.zl-short .q-head {
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.zl-short .q-num {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--ink-soft);
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background 0.18s;
}
.zl-short .q-card.open .q-num { background: var(--accent); }
.zl-short .q-text {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
  line-height: 1.5;
}
.zl-short .q-toggle {
  font-size: 20px;
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.zl-short .q-card.open .q-toggle { transform: rotate(45deg); }
.zl-short .q-answer {
  display: none;
  padding: 0 20px 18px 52px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-mid);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.zl-short .q-card.open .q-answer { display: block; }

/* ══════════════════════════════════════════
   ТРЕНАЖЕР — СПРОЩЕНИЙ (quiz-list)
   Альтернатива до q-card: питання + відповідь
   без JS, розгортання через CSS :focus-within
══════════════════════════════════════════ */
.zl-short .quiz-list { display: flex; flex-direction: column; gap: 10px; }
.zl-short .quiz-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.18s;
}
.zl-short .quiz-item:hover { border-color: #a1a1aa; }
.zl-short .quiz-q {
  padding: 16px 20px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
  background: var(--warm);
}
.zl-short .quiz-a {
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-mid);
}

/* ══════════════════════════════════════════
   ПЛАН ПЕРЕКАЗУ
══════════════════════════════════════════ */
.zl-short .plan-list {
  counter-reset: plan;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.zl-short .plan-list li {
  counter-increment: plan;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 13px 18px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: border-color 0.18s;
}
.zl-short .plan-list li:hover { border-color: var(--accent); }
.zl-short .plan-list li::before {
  content: counter(plan);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ══════════════════════════════════════════
   ВЧИТЕЛЬ — ПАСПОРТ
══════════════════════════════════════════ */
.zl-short .lesson-passport {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 22px 26px;
}
.zl-short .passport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}
@media(max-width:500px){ .zl-short .passport-grid { grid-template-columns: 1fr; } }
.zl-short .passport-item dt {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.zl-short .passport-item dd {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
}

/* ══════════════════════════════════════════
   ВЧИТЕЛЬ — ЦІЛІ
══════════════════════════════════════════ */
.zl-short .goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
@media(max-width:600px){ .zl-short .goals-grid { grid-template-columns: 1fr; } }
.zl-short .goal-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-top: 4px solid;
  border-radius: var(--r);
  padding: 20px 18px;
}
.zl-short .goal-know  { border-top-color: var(--accent2); }
.zl-short .goal-can   { border-top-color: var(--accent); }
.zl-short .goal-value { border-top-color: var(--green); }
.zl-short .goal-icon  { font-size: 26px; margin-bottom: 9px; }
.zl-short .goal-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
  margin-bottom: 11px;
}
.zl-short .goal-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.zl-short .goal-card ul li {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.zl-short .goal-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1;
}

/* ══════════════════════════════════════════
   ВЧИТЕЛЬ — СТРУКТУРА УРОКУ
══════════════════════════════════════════ */
.zl-short .lesson-steps {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: #fff;
}
.zl-short .lesson-step { display: flex; border-bottom: 1px solid var(--border); }
.zl-short .lesson-step:last-child { border-bottom: none; }
.zl-short .step-time {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 16px 13px;
  min-width: 62px;
  text-align: center;
  border-right: 1.5px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
}
.zl-short .step-content { padding: 15px 20px; }
.zl-short .step-title {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}
.zl-short .step-desc {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   ВЧИТЕЛЬ — ПИТАННЯ 4 РІВНІ
══════════════════════════════════════════ */
.zl-short .teacher-questions { display: flex; flex-direction: column; gap: 11px; }
.zl-short .tq-group {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.zl-short .tq-level {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 16px;
  border-bottom: 1px solid var(--border);
}
.zl-short .tq-recall     { background: var(--accent2-bg); color: var(--accent2); }
.zl-short .tq-understand { background: var(--gold-bg);    color: var(--gold); }
.zl-short .tq-analysis   { background: var(--accent-bg);  color: var(--accent); }
.zl-short .tq-creative   { background: var(--purple-bg);  color: var(--purple); }
.zl-short .tq-list {
  list-style: none;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.zl-short .tq-list li {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.zl-short .tq-list li::before {
  content: '?';
  position: absolute;
  left: 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-soft);
}

/* ══════════════════════════════════════════
   ВЧИТЕЛЬ — ДИФ. ЗАВДАННЯ
══════════════════════════════════════════ */
.zl-short .diff-tasks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
@media(max-width:600px){ .zl-short .diff-tasks { grid-template-columns: 1fr; } }
.zl-short .diff-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-top: 4px solid;
  border-radius: var(--r);
  padding: 20px 18px;
}
.zl-short .diff-base { border-top-color: var(--green); }
.zl-short .diff-mid  { border-top-color: var(--gold); }
.zl-short .diff-high { border-top-color: var(--accent); }
.zl-short .diff-badge {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.zl-short .diff-base .diff-badge { color: var(--green); }
.zl-short .diff-mid  .diff-badge { color: var(--gold); }
.zl-short .diff-high .diff-badge { color: var(--accent); }
.zl-short .diff-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.zl-short .diff-card ul li {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.zl-short .diff-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ══════════════════════════════════════════
   ВЧИТЕЛЬ — ОЧІКУВАНІ РЕЗУЛЬТАТИ
══════════════════════════════════════════ */
.zl-short .teacher-block {
  background: var(--accent2-bg);
  border: 1.5px solid #bfdbfe;
  border-radius: var(--r);
  padding: 22px 26px;
}
.zl-short .teacher-block h3 {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent2);
  margin-bottom: 14px;
}
.zl-short .teacher-block ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.zl-short .teacher-block ul li {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--ink-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.zl-short .teacher-block p {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 0;
}
.zl-short .teacher-block p + p { margin-top: 10px; }
.zl-short .teacher-block p strong { color: var(--ink); font-weight: 700; }
.zl-short .teacher-block p em { font-style: italic; color: var(--ink-soft); }


/* ══════════════════════════════════════════
   АУДИТОРІЯ
══════════════════════════════════════════ */
.zl-short .for-student {}
.zl-short .for-teacher { display: none; }
body.aud-teacher .zl-short .for-teacher { display: block; }
body.aud-teacher .zl-short .for-student { display: none; }

/* ══════════════════════════════════════════
   АНІМАЦІЇ
══════════════════════════════════════════ */
@keyframes zlFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.zl-short .main > * { animation: zlFadeUp 0.38s ease both; }
.zl-short .main > *:nth-child(1) { animation-delay: 0.04s; }
.zl-short .main > *:nth-child(2) { animation-delay: 0.09s; }
.zl-short .main > *:nth-child(3) { animation-delay: 0.14s; }
.zl-short .main > *:nth-child(4) { animation-delay: 0.19s; }
.zl-short .main > *:nth-child(5) { animation-delay: 0.24s; }