.bible-page {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0.9rem 0.85rem;
  padding-bottom: 2rem;
}

.bible-header {
  margin-bottom: 1.5rem;
}

.bible-header h1 {
  font-size: 1.75rem;
  margin: 0 0 1rem;
}

.bible-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.bible-filters label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.bible-filters label span {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.bible-select {
  min-width: 180px;
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 1rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

.verses-section {
  background: hsl(var(--card));
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 0.5rem;
  border: 1px solid hsl(var(--border) / 0.6);
}

.verse-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.verse-book-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  padding: 8px 0;
  border: none;
  list-style: none;
  color: hsl(var(--foreground));
}

.verse-chapter-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  padding: 8px 0;
  border: none;
  list-style: none;
  color: hsl(var(--gold-dark));
}

.verse-item {
  padding: 0.75rem 0;
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-bottom: 1px solid hsl(var(--border) / 0.6);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.15s;
  border-radius: 0.35rem;
}

.verse-item:hover {
  background: hsl(var(--gold) / 0.12);
}

.verse-num {
  flex-shrink: 0;
  font-weight: 600;
  color: hsl(var(--gold));
  min-width: 2rem;
}

.verse-text {
  flex: 1;
  line-height: 1.5;
}

.commentary-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 85vh;
  background: hsl(var(--card));
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-x: hidden;
  overflow-y: auto;
}

.commentary-drawer.is-open {
  transform: translateY(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid hsl(var(--border));
  flex-shrink: 0;
}

.drawer-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.enoch-btn {
  padding: 0.35rem 0.6rem;
  font-size: 0.8rem;
  background: hsl(var(--gold) / 0.2);
  color: hsl(var(--gold-dark));
  border: 1px solid hsl(var(--gold) / 0.5);
  border-radius: var(--radius);
  cursor: pointer;
}

.enoch-btn:hover {
  background: hsl(var(--gold) / 0.3);
}

.enoch-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.enoch-result {
  padding: 0.75rem 1rem;
  margin: 0 1rem 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
}

.enoch-result.hidden { display: none; }

.enoch-result .label {
  font-weight: 600;
  color: hsl(var(--gold-dark));
  margin-bottom: 0.25rem;
}

.drawer-header h2 {
  margin: 0;
  font-size: 1.125rem;
}

.drawer-close {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: hsl(var(--muted-foreground));
  border-radius: var(--radius);
}

.drawer-close:hover {
  background: hsl(var(--border));
  color: hsl(var(--foreground));
}

.drawer-body {
  overflow: auto;
  overflow-x: hidden;
  padding: 1rem 1.25rem;
  flex: 1;
  min-height: 0;
}

.commentary-preview-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.commentary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 0.5rem;
}

.commentary-row .commentary-preview-main {
  flex: 1;
  min-width: 0;
}

.commentary-row .enoch-btn {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .commentary-row .enoch-btn {
    padding: 0.28rem 0.5rem;
    font-size: 0.75rem;
  }
}

.commentary-preview-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid hsl(var(--border) / 0.5);
  cursor: pointer;
}

.enoch-commentary-result {
  font-size: 0.85rem;
  padding: 0.5rem 0 0 0;
  margin-top: 0.25rem;
  border-top: 1px dashed hsl(var(--border) / 0.5);
}

.enoch-commentary-result.hidden { display: none; }

.commentary-preview-item:last-child { border-bottom: none; }

.commentary-preview-item:hover {
  background: hsl(var(--background));
}

.commentary-preview-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: hsl(var(--gold-dark));
  margin-bottom: 0.25rem;
}

.commentary-preview-text {
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.commentary-full {
  padding: 0.5rem 0;
}

.commentary-full.hidden { display: none; }

.commentary-back {
  margin-bottom: 0.5rem;
  padding: 0.35rem 0;
  background: none;
  border: none;
  font-size: 0.875rem;
  color: hsl(var(--gold));
  cursor: pointer;
}

.commentary-back:hover { text-decoration: underline; }

.commentary-full h3 {
  font-size: 1rem;
  margin: 0 0 8px;
  padding: 0;
  text-indent: 0;
  color: hsl(var(--gold-dark));
}

.commentary-full-body {
  --reader-commentary-indent: 2.145em;
  font-size: 0.9375rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: justify;
  text-align-last: start;
  text-indent: var(--reader-commentary-indent);
  hyphens: auto;
}

.commentary-full-body p {
  margin: 0;
  text-indent: var(--reader-commentary-indent);
}

.commentary-full-body blockquote {
  text-indent: var(--reader-commentary-indent);
}

.commentary-full-body blockquote p {
  text-indent: var(--reader-commentary-indent);
}

.commentary-full-body div:not(:has(> p)):not(:has(> :is(h1, h2, h3, h4, h5, h6))) {
  text-indent: var(--reader-commentary-indent);
}

.commentary-full-body div:has(> :is(h1, h2, h3, h4, h5, h6)) {
  text-indent: 0;
}

.commentary-full-body div:has(> :is(h1, h2, h3, h4, h5, h6)) > *:not(:is(h1, h2, h3, h4, h5, h6)):not(ul):not(ol):not(table) {
  text-indent: var(--reader-commentary-indent);
}

.commentary-full-body h2 {
  margin: 8px 0;
  padding: 0;
  text-indent: 0;
  color: hsl(var(--foreground));
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.commentary-full-body h4 {
  margin: 8px 0;
  padding: 0;
  text-indent: 0;
  color: inherit;
  /* Как .commentary-full h3 / .commentary-full-body h2 */
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.commentary-full-body h4 * {
  font-weight: inherit !important;
}

.commentary-full-body a,
.commentary-full-body a:visited {
  color: hsl(var(--foreground));
  text-decoration: underline;
  text-underline-offset: 2px;
}

.commentary-full-body a:hover {
  color: hsl(var(--gold-dark));
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 299;
  transition: opacity 0.25s ease-out;
}

.drawer-backdrop.hidden { display: none; }

.media-section {
  margin-bottom: 1.5rem;
}

.media-section.hidden { display: none; }

.media-heading {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: hsl(var(--muted-foreground));
}

.media-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.media-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.media-item audio,
.media-item video {
  max-width: 100%;
}

.media-item a {
  color: hsl(var(--gold));
  text-decoration: none;
}

.media-item a:hover { text-decoration: underline; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

@media (min-width: 768px) {
  .commentary-drawer {
    left: auto;
    width: 560px;
    max-height: 100vh;
    top: 0;
    bottom: 0;
    border-radius: 0;
    border-left: 1px solid hsl(var(--border));
  }
  .commentary-drawer.is-open { transform: translateX(0); }
  .commentary-drawer:not(.is-open) { transform: translateX(100%); }
}

.loading {
  color: hsl(var(--muted-foreground));
  padding: 1rem;
}

.loading-next {
  color: hsl(var(--muted-foreground));
  padding: 0.75rem;
  font-size: 0.9rem;
  list-style: none;
}

.error-msg {
  color: #b91c1c;
  padding: 1rem;
}

/* --- Страница толкований стиха (2-й уровень) --- */
.bible-verse-page {
  padding-top: 1rem;
}

.verse-page-nav {
  margin-bottom: 1.25rem;
}

.verse-back-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  color: hsl(var(--gold-dark));
  text-decoration: none;
  font-weight: 500;
}

.verse-back-link:hover {
  text-decoration: underline;
}

.verse-page-header {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.6);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}

.verse-ref {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--muted-foreground));
}

/* Outlined shell: координаты на границе (как dx-texteditor). */
.verse-text-shell {
  --verse-outline-border: hsl(var(--border) / 0.75);
  --verse-outline-fill: hsl(var(--background) / 0.45);
  --verse-outline-label: hsl(218 22% 42%);
  position: relative;
  margin: 0 0 1rem;
  border: 1px solid var(--verse-outline-border);
  border-radius: var(--radius);
  background: hsl(var(--card));
  min-width: 0;
}

body.dark .verse-text-shell {
  --verse-outline-border: hsl(var(--border) / 0.6);
  --verse-outline-fill: hsl(var(--muted) / 0.18);
  --verse-outline-label: hsl(215 14% 72%);
}

.verse-text-shell .verse-text-legend.verse-ref {
  position: absolute;
  left: 0.5rem;
  top: 0;
  z-index: 1;
  transform: translateY(-50%);
  margin: 0;
  padding: 0 0.4rem;
  max-width: calc(100% - 1.5rem);
  width: max-content;
  background: hsl(var(--card));
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--verse-outline-label);
}

.verse-text-wrap {
  margin: 0;
  padding: 0.65rem 0.85rem 0.85rem;
  border-radius: inherit;
  background: var(--verse-outline-fill);
  min-height: 2.5rem;
}

.verse-text-block {
  margin: 0;
  padding: 0.35rem 0 0 0.85rem;
  border: none;
  border-left: 3px solid hsl(var(--gold) / 0.6);
  font-size: 1.1rem;
  line-height: 1.5;
  color: hsl(var(--foreground));
  font-style: italic;
}

.verse-header-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.verse-enoch-all,
.verse-enoch-one {
  min-height: 38px;
  padding: 0.45rem 0.9rem;
}

.verse-commentary-toolbar {
  margin-bottom: 1rem;
}

.verse-filter-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
}

.verse-filter-label span {
  flex-shrink: 0;
}

.verse-filter-select {
  min-width: 200px;
}

.verse-commentary-box {
  background: transparent;
  border: 1px solid hsl(var(--border) / 0.6);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  min-height: 120px;
}

/* Режим «Все» (несколько толкований Азбуки): карточки подряд, 8px между ними, без общей рамки вокруг списка. */
.verse-commentary-box.verse-commentary-box--stack {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  min-height: 0;
}

.verse-commentary-box--stack .verse-commentary-list {
  gap: 8px;
  margin-bottom: 0;
}

.verse-commentary-box--stack .verse-commentary-arrows {
  border-top: none;
  margin-top: 8px;
  padding-top: 0;
}

/* Мобильные: толкование на всю ширину (как стрелочка) */
@media (max-width: 768px) {
  .bible-verse-page {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .bible-verse-page .verse-page-header {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .bible-verse-page .verse-commentary-box {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .bible-verse-page .verse-commentary-box--stack {
    padding-left: 0;
    padding-right: 0;
  }
  .bible-verse-page .verse-commentary-item {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.verse-commentary-title {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: hsl(var(--gold-dark));
  font-family: var(--font-display);
}

.verse-commentary-meta {
  margin-bottom: 0.75rem;
}

.verse-commentary-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.verse-commentary-item {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.6);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 0;
}

.verse-commentary-item-title {
  margin: 0 0 8px;
  padding: 0;
  text-indent: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: hsl(var(--gold-dark));
  font-family: var(--font-display);
}

.verse-commentary-item-meta {
  margin-bottom: 0.5rem;
}

.verse-commentary-item-enoch-result {
  margin-bottom: 0.5rem;
}

.verse-commentary-item-body {
  --reader-commentary-indent: 2.145em;
  font-size: 0.9375rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  color: hsl(var(--foreground));
  overflow: hidden;
  transition: max-height 0.2s ease;
  text-align: justify;
  text-align-last: start;
  text-indent: var(--reader-commentary-indent);
  hyphens: auto;
}

/* Декоративные иконки модулей MyBIBLE (тройной разделитель): скрыть на странице стиха. */
.verse-commentary-item-body img[src*="left_arrow" i],
.verse-commentary-item-body img[src*="left-arrow" i],
.verse-commentary-item-body img[src*="right_arrow" i],
.verse-commentary-item-body img[src*="right-arrow" i],
.verse-commentary-item-body img[src*="bottom_home" i],
.verse-commentary-item-body img[src*="bottom-home" i],
.verse-commentary-item-part img[src*="left_arrow" i],
.verse-commentary-item-part img[src*="left-arrow" i],
.verse-commentary-item-part img[src*="right_arrow" i],
.verse-commentary-item-part img[src*="right-arrow" i],
.verse-commentary-item-part img[src*="bottom_home" i],
.verse-commentary-item-part img[src*="bottom-home" i],
.verse-one-commentary-block .verse-one-commentary-body img[src*="left_arrow" i],
.verse-one-commentary-block .verse-one-commentary-body img[src*="left-arrow" i],
.verse-one-commentary-block .verse-one-commentary-body img[src*="right_arrow" i],
.verse-one-commentary-block .verse-one-commentary-body img[src*="right-arrow" i],
.verse-one-commentary-block .verse-one-commentary-body img[src*="bottom_home" i],
.verse-one-commentary-block .verse-one-commentary-body img[src*="bottom-home" i] {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  visibility: hidden !important;
}

.verse-commentary-item-body p,
.verse-commentary-item-part p {
  margin: 0;
  text-indent: var(--reader-commentary-indent);
}

.verse-commentary-item-body blockquote,
.verse-commentary-item-part blockquote {
  text-indent: var(--reader-commentary-indent);
}

.verse-commentary-item-body blockquote p,
.verse-commentary-item-part blockquote p {
  text-indent: var(--reader-commentary-indent);
}

.verse-commentary-item-body div:not(:has(> p)):not(:has(> :is(h1, h2, h3, h4, h5, h6))),
.verse-commentary-item-part div:not(:has(> p)):not(:has(> :is(h1, h2, h3, h4, h5, h6))) {
  text-indent: var(--reader-commentary-indent);
}

.verse-commentary-item-body div:has(> :is(h1, h2, h3, h4, h5, h6)),
.verse-commentary-item-part div:has(> :is(h1, h2, h3, h4, h5, h6)) {
  text-indent: 0;
}

.verse-commentary-item-body div:has(> :is(h1, h2, h3, h4, h5, h6)) > *:not(:is(h1, h2, h3, h4, h5, h6)):not(ul):not(ol):not(table),
.verse-commentary-item-part div:has(> :is(h1, h2, h3, h4, h5, h6)) > *:not(:is(h1, h2, h3, h4, h5, h6)):not(ul):not(ol):not(table) {
  text-indent: var(--reader-commentary-indent);
}

.verse-commentary-item-body h2,
.verse-commentary-item-part h2 {
  margin: 8px 0;
  padding: 0;
  text-indent: 0;
  color: hsl(var(--foreground));
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  font-family: var(--font-display);
}

.verse-commentary-item-body h4,
.verse-commentary-item-part h4 {
  margin: 8px 0;
  padding: 0;
  text-indent: 0;
  color: inherit;
  /* Как .verse-commentary-item-title / h2 в теле */
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  font-family: var(--font-display);
}

.verse-commentary-item-body h4 *,
.verse-commentary-item-part h4 * {
  font-weight: inherit !important;
}

.verse-commentary-item-body a,
.verse-commentary-item-body a:visited,
.verse-commentary-item-part a,
.verse-commentary-item-part a:visited {
  color: hsl(var(--foreground));
  text-decoration: underline;
  text-underline-offset: 2px;
}

.verse-commentary-item-body a:hover,
.verse-commentary-item-part a:hover {
  color: hsl(var(--gold-dark));
}

/* Части одного толкования Азбуки, изначально разделённые <hr> в HTML: отдельные блоки, между ними семантический hr без линии (только 8px). */
.verse-commentary-item-body-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  white-space: normal;
}

.verse-commentary-item-part {
  margin: 0;
  padding: 0;
  white-space: pre-wrap;
  word-break: break-word;
  text-align: justify;
  text-align-last: start;
  text-indent: var(--reader-commentary-indent, 2.145em);
  hyphens: auto;
}

/* Вместо видимой линии <hr> из Азбуки: только отступ 8px между контейнерами-частями. */
.verse-commentary-item-hr {
  border: none;
  margin: 0;
  height: 8px;
  min-height: 8px;
  flex-shrink: 0;
  background: transparent;
  display: block;
  width: 100%;
}

.verse-commentary-item-body.collapsed {
  max-height: 6.5em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-clamp: 4;
}

.verse-commentary-item-body.expanded {
  display: block;
  max-height: none;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  line-clamp: unset;
  overflow: visible;
}

.verse-expand-btn {
  margin-top: 0.5rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--gold-dark));
  background: transparent;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  cursor: pointer;
}

.verse-expand-btn:hover {
  background: hsl(var(--gold) / 0.1);
}

.verse-commentary-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 0 0;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.verse-arrow {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.verse-arrow:hover:not(:disabled) {
  background: hsl(var(--gold) / 0.15);
  border-color: hsl(var(--gold) / 0.5);
}

.verse-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.verse-arrow-counter {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  min-width: 4rem;
  text-align: center;
}

.verse-all-commentaries {
  margin-top: 1.5rem;
}

.verse-all-commentaries-heading {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--gold-dark));
  font-family: var(--font-display);
}

.verse-all-commentaries-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.verse-loading-commentaries {
  color: hsl(var(--muted-foreground));
}

.verse-one-commentary-block {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.6);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.verse-one-commentary-block h3 {
  margin: 0 0 8px;
  padding: 0;
  text-indent: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(var(--gold-dark));
  font-family: var(--font-display);
}

.verse-one-commentary-block .verse-one-commentary-body h2 {
  margin: 8px 0;
  padding: 0;
  text-indent: 0;
  color: hsl(var(--foreground));
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
  font-family: var(--font-display);
}

.verse-one-commentary-block .verse-one-commentary-body h4 {
  margin: 8px 0;
  padding: 0;
  text-indent: 0;
  color: inherit;
  /* Как .verse-one-commentary-block h3 / .verse-one-commentary-body h2 */
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
  font-family: var(--font-display);
}

.verse-one-commentary-block .verse-one-commentary-body h4 * {
  font-weight: inherit !important;
}

.verse-one-commentary-block .verse-one-commentary-meta {
  margin-bottom: 0.75rem;
}

.verse-one-commentary-block .verse-one-commentary-enoch-result {
  margin-bottom: 0.75rem;
}

.verse-one-commentary-block .verse-one-commentary-body {
  --reader-commentary-indent: 2.145em;
  font-size: 0.9375rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  color: hsl(var(--foreground));
  text-align: justify;
  text-align-last: start;
  text-indent: var(--reader-commentary-indent);
  hyphens: auto;
}

.verse-one-commentary-block .verse-one-commentary-body p {
  margin: 0;
  text-indent: var(--reader-commentary-indent);
}

.verse-one-commentary-block .verse-one-commentary-body blockquote {
  text-indent: var(--reader-commentary-indent);
}

.verse-one-commentary-block .verse-one-commentary-body blockquote p {
  text-indent: var(--reader-commentary-indent);
}

.verse-one-commentary-block .verse-one-commentary-body div:not(:has(> p)):not(:has(> :is(h1, h2, h3, h4, h5, h6))) {
  text-indent: var(--reader-commentary-indent);
}

.verse-one-commentary-block .verse-one-commentary-body div:has(> :is(h1, h2, h3, h4, h5, h6)) {
  text-indent: 0;
}

.verse-one-commentary-block .verse-one-commentary-body div:has(> :is(h1, h2, h3, h4, h5, h6)) > *:not(:is(h1, h2, h3, h4, h5, h6)):not(ul):not(ol):not(table) {
  text-indent: var(--reader-commentary-indent);
}

.verse-one-commentary-block .verse-one-commentary-body a,
.verse-one-commentary-block .verse-one-commentary-body a:visited {
  color: hsl(var(--foreground));
  text-decoration: underline;
  text-underline-offset: 2px;
}

.verse-one-commentary-block .verse-one-commentary-body a:hover {
  color: hsl(var(--gold-dark));
}
