/* Uttarakhand tribes — compact, single-column study notes.
   Shared top bar, sidebar, footer, theme and highlighting remain canonical. */

body[data-page-id^="uktribes-"] {
  --tribe-surface: var(--card);
  --tribe-surface-soft: color-mix(in srgb, var(--card) 88%, var(--accent-soft));
  --tribe-text: var(--ink);
  --tribe-muted: var(--ink-soft);
  --tribe-faint: var(--ink-faint);
  --tribe-line: var(--line-soft);
  --tribe-line-strong: var(--line);
  --tribe-accent: var(--accent);
  --tribe-accent-strong: var(--accent-2);
  --content-w: 900px;
}

.tribes-reader-page .tribes-app,
.tribes-reader-page .tribes-article,
.tribes-reader-page .reader,
.tribes-reader-page .tribe-card,
.tribes-reader-page .tribe-fact-row,
.tribes-reader-page .tribe-memory-row,
.tribes-reader-page .tribe-term,
.tribes-reader-page .tribe-protector-row { min-width: 0; }

.tribes-reader-page .reader {
  width: min(var(--content-w), 100%);
  padding-top: 22px;
}

.tribes-reader-page .page-breadcrumb { margin-bottom: 12px; font-size: 12.5px; }

/* Sidebar-only article switcher. */
.tribes-article-picker {
  margin: 0 0 10px;
  padding: 10px;
  border: 1px solid var(--tribe-line);
  border-radius: 10px;
  background: var(--tribe-surface);
}

.tribes-article-picker label {
  display: block;
  margin: 0 0 5px;
  color: var(--tribe-faint);
  font-size: 11px;
  font-weight: 800;
}

.tribes-article-picker select {
  display: block;
  width: 100%;
  min-height: 40px;
  padding: 7px 30px 7px 9px;
  border: 1px solid var(--tribe-line-strong);
  border-radius: 8px;
  background: var(--paper);
  color: var(--tribe-text);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.tribes-article-picker select:focus-visible,
.tribes-reader-page :is(a, button, select):focus-visible {
  outline: 3px solid color-mix(in srgb, var(--tribe-accent) 30%, transparent);
  outline-offset: 2px;
}

/* Compact, text-first article introduction. */
.tribes-article .hero {
  margin: 0 0 12px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--tribe-line-strong);
  border-top: 4px solid var(--tribe-accent);
  border-radius: 12px;
  background: var(--tribe-surface);
  box-shadow: none;
}

.tribes-article .hero::after { display: none; }
.tribes-article .hero .eyebrow { margin-bottom: 5px; color: var(--tribe-accent-strong); }

.tribes-article .hero h1 {
  max-width: 760px;
  margin: 0;
  text-wrap: balance;
}

.tribes-article .hero > p {
  max-width: 780px;
  margin: 7px 0 0;
  color: var(--tribe-muted);
}

.tribes-article .hero-meta { display: none; }

.tribe-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--tribe-line);
  color: var(--tribe-faint);
  font-size: 12px;
  font-weight: 700;
}

.tribe-hero-meta span { display: inline-flex; gap: 5px; align-items: baseline; }
.tribe-hero-meta b { color: var(--tribe-accent-strong); font-weight: 900; }

/* One full-width topic per row. Sections are flat notes, not nested cards. */
.tribe-card {
  --tribe-card-pad: clamp(16px, 2.5vw, 22px);
  scroll-margin-top: calc(var(--shared-topbar-height, 64px) + 14px);
  margin: 10px 0;
  padding: 0 var(--tribe-card-pad) 14px;
  overflow: clip;
  border: 1px solid var(--tribe-line-strong);
  border-radius: 12px;
  background: var(--tribe-surface);
  box-shadow: none;
}

.tribe-card:hover { box-shadow: none; }
.tribe-card > :last-child { margin-bottom: 0; }

.tribe-card h2 {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin: 0 calc(-1 * var(--tribe-card-pad)) 10px;
  padding: 11px var(--tribe-card-pad);
  border: 0;
  border-bottom: 1px solid var(--tribe-line);
  background: var(--tribe-surface-soft);
  color: var(--tribe-text);
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.35;
}

.tribe-card .idx {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid color-mix(in srgb, var(--tribe-accent) 45%, var(--tribe-line));
  border-radius: 8px;
  background: var(--tribe-surface);
  color: var(--tribe-accent-strong);
  font-size: 11px;
  font-weight: 900;
  box-shadow: none;
}

.tribe-card h2 .actions {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  margin: 0;
}

.tribe-bookmark {
  display: grid;
  place-items: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--tribe-faint);
}

.tribe-bookmark svg { width: 17px; height: 17px; }

.tribe-bookmark:hover {
  border-color: var(--tribe-line-strong);
  background: var(--tribe-surface-soft);
  color: var(--tribe-accent-strong);
}

.tribe-bookmark:is(.active, [aria-pressed="true"]) {
  border-color: var(--tribe-accent);
  background: color-mix(in srgb, var(--tribe-accent) 16%, var(--tribe-surface));
  color: var(--tribe-accent-strong);
}

.tribe-bookmark:is(.active, [aria-pressed="true"]) svg {
  fill: currentColor;
  stroke: currentColor;
}

/* Label → explanation ledger. It stays in one reading sequence. */
.tribe-fact-list,
.tribe-memory-lines,
.tribe-term-list,
.tribe-protector-list { display: block; margin: 0; }

.tribe-fact-row,
.tribe-memory-row,
.tribe-term,
.tribe-protector-row {
  display: grid;
  grid-template-columns: minmax(132px, 25%) minmax(0, 1fr);
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--tribe-line);
}

.tribe-fact-row:last-child,
.tribe-memory-row:last-child,
.tribe-term:last-child,
.tribe-protector-row:last-child { border-bottom: 0; }

.tribe-fact-row dt,
.tribe-fact-row dd,
.tribe-term dt,
.tribe-term dd { margin: 0; }

.tribe-fact-row dt,
.tribe-memory-label,
.tribe-term dt,
.tribe-protector-row > span:first-child {
  color: var(--tribe-accent-strong);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.55;
}

.tribe-fact-row dd,
.tribe-memory-copy,
.tribe-term dd,
.tribe-protector-row > strong {
  color: var(--tribe-muted);
  font-size: 16px;
  line-height: 1.65;
}

.tribe-fact-row dd strong,
.tribe-memory-copy strong,
.tribe-term dd strong { color: var(--tribe-text); }
.tribe-protector-row > strong { color: var(--tribe-accent-strong); }
.tribe-memory-copy p { margin: 0 0 6px; }

/* A single restrained callout is enough for linked exam facts. */
.tribe-memory-row--focus {
  margin: 5px 0;
  padding: 10px 12px;
  border: 0;
  border-left: 3px solid var(--tribe-accent);
  border-radius: 0 8px 8px 0;
  background: var(--tribe-surface-soft);
}

.tribe-related-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 22px;
  margin-top: 6px;
  padding-top: 7px;
  border-top: 1px solid var(--tribe-line);
}

.tribe-related-facts > div {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: baseline;
}

.tribe-related-facts span { color: var(--tribe-faint); font-size: 12px; font-weight: 750; }
.tribe-related-facts strong { color: var(--tribe-accent-strong); font-size: 15px; }

.tribe-note,
.tribe-inline-callout {
  margin: 10px 0 0;
  padding: 10px 12px;
  border: 1px solid var(--tribe-line);
  border-left: 3px solid var(--tribe-accent);
  border-radius: 0 8px 8px 0;
  background: var(--tribe-surface-soft);
  color: var(--tribe-muted);
  font-size: 15px;
  line-height: 1.6;
}

.tribe-note strong,
.tribe-inline-callout strong { color: var(--tribe-accent-strong); }
.tribe-inline-callout strong { display: block; }
.tribe-inline-callout span { display: block; margin-top: 2px; }

.tribe-subheading {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 14px 0 4px;
  color: var(--tribe-text);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.4;
}

.tribe-subheading::after { content: ""; flex: 1; height: 1px; background: var(--tribe-line); }

/* Ordered chronology with one compact row for each step. */
.tribe-timeline { position: relative; display: block; margin: 0; }

.tribe-timeline::before {
  content: "";
  position: absolute;
  left: 49px;
  top: 13px;
  bottom: 13px;
  width: 1px;
  background: color-mix(in srgb, var(--tribe-accent) 42%, var(--tribe-line));
}

.tribe-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 39px minmax(0, 1fr);
  gap: 22px;
  padding: 7px 0;
}

.tribe-timeline-item::before {
  content: "";
  position: absolute;
  left: 45px;
  top: 15px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--tribe-accent);
  border-radius: 50%;
  background: var(--tribe-surface);
  box-sizing: border-box;
}

.tribe-timeline-year {
  padding-top: 1px;
  color: var(--tribe-accent-strong);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.5;
  text-align: right;
}

.tribe-timeline-copy { color: var(--tribe-muted); font-size: 16px; line-height: 1.62; }
.tribe-timeline-copy strong { color: var(--tribe-text); }

/* Comparable summary facts may share a strip; full topics never do. */
.tharu-key-stats,
.tribe-kpi-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 8px;
  border-bottom: 1px solid var(--tribe-line);
}

.tribe-kpi-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.tharu-key-stat,
.tribe-kpi { min-width: 0; padding: 8px 14px 9px 0; }

.tharu-key-stat + .tharu-key-stat,
.tribe-kpi + .tribe-kpi { padding-left: 14px; border-left: 1px solid var(--tribe-line); }

.tharu-key-stat strong,
.tribe-kpi strong {
  display: block;
  margin-bottom: 2px;
  color: var(--tribe-accent-strong);
  font-size: 18px;
  line-height: 1.3;
}

.tharu-key-stat span,
.tribe-kpi span { display: block; color: var(--tribe-muted); font-size: 13px; line-height: 1.45; }

.tribe-sequence-label { margin: 0 0 7px; color: var(--tribe-faint); font-size: 13px; font-weight: 800; }
.tribe-order { display: block; margin: 0; }
.tribe-order-item { display: grid; grid-template-columns: 34px 1fr; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--tribe-line); }
.tribe-order-item:last-child { border-bottom: 0; }
.tribe-order-item b { color: var(--tribe-accent-strong); font: 900 11px/1.5 "JetBrains Mono", monospace; }

.tribe-rank-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
  margin: 2px 0 0;
}

.tribe-rank-block { min-width: 0; }

.tribe-rank-block + .tribe-rank-block {
  margin-top: 0;
  padding-left: clamp(24px, 4vw, 44px);
  border-left: 1px solid var(--tribe-line);
}

.tribe-rank-heading { display: flex; gap: 9px; align-items: center; margin-bottom: 5px; }

.tribe-rank-heading > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: var(--tribe-surface-soft);
  color: var(--tribe-accent-strong);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.tribe-rank-block h3 { margin: 0; font-size: 17px; }
.tribe-rank-block h3::before { display: none; }

/* Ordered district rankings must use their native 1, 2, 3 markers.
   world-history.css adds a decorative .card li::before dot globally,
   so explicitly remove that decoration here to avoid double markers. */
.tribe-rank-list {
  margin: 0;
  padding-left: 1.55rem;
  list-style: decimal outside;
}

.tribe-rank-list li {
  position: static;
  margin: 0;
  padding: 6px 0;
  border-bottom: 1px dashed var(--tribe-line);
  color: var(--tribe-muted);
  line-height: 1.55;
}

.tribe-rank-list li:last-child { border-bottom: 0; }
.tribe-rank-list li::before { content: none !important; display: none !important; }
.tribe-rank-list li::marker { color: var(--tribe-faint); font-weight: 800; }
.tribe-rank-list li strong { color: var(--tribe-text); }

.tribe-simple-list { margin: 4px 0 0 !important; }
.tribe-simple-list > li { padding-top: 6px !important; padding-bottom: 6px !important; }

/* Completion remains available without visually dominating the notes. */
.tribe-card .complete-row {
  min-height: 38px;
  margin: 10px 0 -5px;
  padding-top: 8px;
  border-top: 1px solid var(--tribe-line);
}

.tribe-card .complete-btn { min-height: 34px; }
.tribe-card .section-meta { color: var(--tribe-faint); opacity: 1; }

.tribes-article .chapter-end { margin-top: 12px; }
.tribes-article .chapter-meta-bar { padding: 10px 12px; box-shadow: none; }
.tribes-article .chapter-navigation { gap: 10px; margin-top: 10px; }
.tribes-article .chapter-nav-card { min-height: 64px; box-shadow: none; }

@media (max-width: 760px) {
  .tribes-reader-page .reader { padding-top: 14px; }
  .tribes-article .hero { padding: 16px; }

  .tribe-card {
    margin: 8px 0;
    padding-right: 14px;
    padding-left: 14px;
    border-radius: 10px;
  }

  .tribe-card h2 {
    grid-template-columns: 29px minmax(0, 1fr) auto;
    gap: 8px;
    margin-right: -14px;
    margin-left: -14px;
    padding: 10px 14px;
  }

  .tribe-card .idx { width: 29px; height: 29px; }

  .tribe-fact-row,
  .tribe-memory-row,
  .tribe-term,
  .tribe-protector-row {
    grid-template-columns: 1fr;
    gap: 1px;
    padding: 8px 0;
  }

  .tribe-fact-row dt,
  .tribe-memory-label,
  .tribe-term dt,
  .tribe-protector-row > span:first-child { font-size: 12.5px; }

  .tribe-fact-row dd,
  .tribe-memory-copy,
  .tribe-term dd,
  .tribe-protector-row > strong,
  .tribe-timeline-copy { font-size: 15.5px; }

  .tribe-memory-row--focus { padding: 9px 10px; }

  .tribe-rank-grid { grid-template-columns: 1fr; gap: 0; }
  .tribe-rank-block + .tribe-rank-block {
    margin-top: 8px;
    padding-top: 12px;
    padding-left: 0;
    border-top: 1px solid var(--tribe-line);
    border-left: 0;
  }

  .tharu-key-stats { grid-template-columns: 1fr; }
  .tharu-key-stat { padding: 7px 0; }
  .tharu-key-stat + .tharu-key-stat { padding-left: 0; border-left: 0; border-top: 1px solid var(--tribe-line); }
  .tribes-article .chapter-navigation { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .tribe-hero-meta { gap: 5px 13px; }
  .tribe-card h2 { font-size: 18px; }
  .tribe-related-facts { display: block; }
  .tribe-related-facts > div + div { margin-top: 4px; }
  .tribe-kpi-strip { grid-template-columns: 1fr; }
  .tribe-kpi + .tribe-kpi { padding-left: 0; border-left: 0; border-top: 1px solid var(--tribe-line); }
}


/* Bhotia attire: compact study ledger; terms stay in natural head-to-foot order. */
#bhotia-06 .bhotia-attire-block { margin-top: 14px; }
#bhotia-06 .bhotia-attire-block:first-of-type { margin-top: 8px; }

#bhotia-06 .bhotia-attire-list,
#bhotia-06 .bhotia-jewel-list {
  border-top: 1px solid var(--tribe-line);
}

#bhotia-06 .bhotia-attire-row {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--tribe-line);
}

#bhotia-06 .bhotia-attire-term {
  color: var(--tribe-accent-strong);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

#bhotia-06 .bhotia-attire-copy {
  color: var(--tribe-muted);
  font-size: 15.5px;
  line-height: 1.55;
}

#bhotia-06 .bhotia-attire-copy strong { color: var(--tribe-text); }
#bhotia-06 .bhotia-attire-copy--split { display: grid; gap: 1px; }

#bhotia-06 .bhotia-salipuli-note { margin-bottom: 7px; }

#bhotia-06 .bhotia-jewel-row {
  padding: 9px 0;
  border-bottom: 1px solid var(--tribe-line);
}

#bhotia-06 .bhotia-jewel-heading {
  margin: 0 0 5px;
  color: var(--tribe-text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

#bhotia-06 .bhotia-jewel-items { display: grid; gap: 4px; }

#bhotia-06 .bhotia-jewel-item {
  display: grid;
  grid-template-columns: minmax(105px, 135px) minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

#bhotia-06 .bhotia-jewel-item strong,
#bhotia-06 .bhotia-jewel-items--names strong {
  color: var(--tribe-accent-strong);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}

#bhotia-06 .bhotia-jewel-item span {
  color: var(--tribe-muted);
  font-size: 15px;
  line-height: 1.5;
}

#bhotia-06 .bhotia-jewel-items--names {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
}

#bhotia-06 .bhotia-jad-block {
  margin-top: 18px;
  padding: 0 12px 3px;
  border: 1px solid var(--tribe-line);
  border-left: 3px solid var(--tribe-accent);
  border-radius: 0 9px 9px 0;
  background: var(--tribe-surface-soft);
}

#bhotia-06 .bhotia-jad-block > .tribe-subheading { margin-top: 10px; }
#bhotia-06 .bhotia-jad-group { padding: 3px 0 6px; }
#bhotia-06 .bhotia-jad-group + .bhotia-jad-group { border-top: 1px dashed var(--tribe-line); }
#bhotia-06 .bhotia-jad-group h4 {
  margin: 5px 0 3px;
  color: var(--tribe-text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

@media (max-width: 760px) {
  #bhotia-06 .bhotia-attire-row {
    grid-template-columns: minmax(125px, 165px) minmax(0, 1fr);
    gap: 8px 12px;
    align-items: start;
    padding: 8px 0;
  }

  #bhotia-06 .bhotia-attire-term { font-size: 13.5px; }
  #bhotia-06 .bhotia-attire-copy { font-size: 15px; }
  #bhotia-06 .bhotia-jewel-item { grid-template-columns: minmax(95px, 120px) minmax(0, 1fr); gap: 8px; }
  #bhotia-06 .bhotia-jewel-items--names { display: grid; gap: 2px; }
  #bhotia-06 .bhotia-jad-block { padding-right: 10px; padding-left: 10px; }
}

@media (max-width: 420px) {
  #bhotia-06 .bhotia-attire-row { grid-template-columns: 1fr; gap: 1px; }
  #bhotia-06 .bhotia-jewel-item { grid-template-columns: 1fr; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .tribes-reader-page * { scroll-behavior: auto; }
}


/* Jaunsari: semantic study hierarchy. Major recall units use headings;
   individual exam facts stay on separate lines instead of a flat ledger. */
.jaunsari-article .jaunsari-section-lead {
  margin: 0 0 8px;
  color: var(--tribe-muted);
  font-size: 16px;
  line-height: 1.7;
}

.jaunsari-article .jaunsari-section-lead strong { color: var(--tribe-text); }

.jaunsari-article .jaunsari-group {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--tribe-line);
}

.jaunsari-article .jaunsari-group--first,
.jaunsari-article .jaunsari-section-lead + .jaunsari-group {
  margin-top: 8px;
  padding-top: 0;
  border-top: 0;
}

.jaunsari-article .jaunsari-group-title {
  margin: 0 0 6px;
  padding: 1px 0 1px 11px;
  border-left: 3px solid var(--tribe-accent);
  color: var(--tribe-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.jaunsari-article .jaunsari-group-title::before { display: none; }

.jaunsari-article .jaunsari-mini-title {
  margin: 12px 0 3px;
  padding: 0;
  color: var(--tribe-accent-strong);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}

.jaunsari-article .jaunsari-mini-title::before { display: none; }

.jaunsari-article .jaunsari-mini-note {
  margin: 3px 0 4px;
  color: var(--tribe-muted);
  font-size: 15px;
  line-height: 1.65;
}

.jaunsari-article .jaunsari-facts {
  margin: 0;
  padding: 0;
  list-style: none;
}

.jaunsari-article .jaunsari-facts > li {
  position: relative;
  margin: 0;
  padding: 7px 0 7px 20px;
  border-bottom: 1px solid var(--tribe-line);
  color: var(--tribe-muted);
  font-size: 16px;
  line-height: 1.65;
}

.jaunsari-article .jaunsari-facts > li:last-child { border-bottom: 0; }

.jaunsari-article .jaunsari-facts > li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 1.12em;
  width: 6px;
  height: 6px;
  border: 2px solid var(--tribe-accent);
  border-radius: 50%;
  background: var(--tribe-surface);
}

.jaunsari-article .jaunsari-facts > li > strong:first-child { color: var(--tribe-accent-strong); }
.jaunsari-article .jaunsari-facts strong { font-weight: 850; }

.jaunsari-article .jaunsari-numbered {
  margin: 2px 0 0;
  padding-left: 1.55rem;
  list-style: decimal outside;
}

.jaunsari-article .jaunsari-numbered > li {
  margin: 0;
  padding: 7px 0 7px 4px;
  border-bottom: 1px solid var(--tribe-line);
  color: var(--tribe-muted);
  font-size: 16px;
  line-height: 1.62;
}

.jaunsari-article .jaunsari-numbered > li:last-child { border-bottom: 0; }
.jaunsari-article .jaunsari-numbered > li::before { content: none !important; display: none !important; }
.jaunsari-article .jaunsari-numbered > li::marker { color: var(--tribe-accent-strong); font-weight: 900; }
.jaunsari-article .jaunsari-numbered > li > strong:first-child { color: var(--tribe-text); }
.jaunsari-article .jaunsari-numbered--compact > li { padding-top: 4px; padding-bottom: 4px; }

.jaunsari-article .jaunsari-item-note {
  display: block;
  margin-top: 2px;
  color: var(--tribe-muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.jaunsari-article .jaunsari-item-note strong { color: var(--tribe-accent-strong); }

.jaunsari-article .jaunsari-name-list {
  margin: 2px 0 4px;
  padding-left: 1.35rem;
  list-style: disc outside;
}

.jaunsari-article .jaunsari-name-list > li {
  margin: 0;
  padding: 3px 0;
  border: 0;
  color: var(--tribe-muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.jaunsari-article .jaunsari-name-list > li::before { content: none !important; display: none !important; }
.jaunsari-article .jaunsari-name-list > li::marker { color: var(--tribe-accent); }
.jaunsari-article .jaunsari-name-list strong { color: var(--tribe-text); }

.jaunsari-article .jaunsari-group + .tribe-inline-callout { margin-top: 14px; }

@media (max-width: 680px) {
  .jaunsari-article .jaunsari-section-lead,
  .jaunsari-article .jaunsari-facts > li,
  .jaunsari-article .jaunsari-numbered > li { font-size: 15.5px; }

  .jaunsari-article .jaunsari-group { margin-top: 14px; padding-top: 12px; }
  .jaunsari-article .jaunsari-group--first,
  .jaunsari-article .jaunsari-section-lead + .jaunsari-group { margin-top: 7px; padding-top: 0; }
  .jaunsari-article .jaunsari-group-title { font-size: 16.5px; }
  .jaunsari-article .jaunsari-mini-title { margin-top: 10px; }
}

@media print {
  .tribes-article-picker,
  .tribe-card .actions,
  .tribe-card .complete-row { display: none !important; }

  .tribe-card,
  .tribes-article .hero { break-inside: auto; border-color: #bbb; background: #fff; }
  .tribe-card h2,
  .tribe-memory-row--focus,
  .tribe-note,
  .tribe-inline-callout { background: #fff; }
}
