/* === Bloco de Destaque === */
.bloco-destaque {
  display: block;
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
}

.bloco-destaque__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.bloco-destaque--left .bloco-destaque__inner {
  grid-template-columns: auto 1fr;
}

.bloco-destaque__texto h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.bloco-destaque__texto {
  font-size: 1rem;
  line-height: 1.7;
}

.bloco-destaque__imagem img {
  display: block;
  height: auto;
  border-radius: 6px;
}

/* Editor: melhora visualização em fundo escuro */
.editor-styles-wrapper .bloco-destaque {
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

/* === Letra Capitular === */
.capitular{
  font-size: 4em;
  margin: 10px 5px;
  float: left;
  color: #d1be6c;
}
.capitular-branco{
  font-size: 4em;
  margin: 10px 5px;
  float: left;
  color: #ffffff;
}
.capitular-evangelho{
  font-size: 4em;
  margin: 10px 5px;
  float: left;
  color: #cc4d31;
}

/* Esconde cabeçalhos vazios dentro do bloco e remove espaço extra quando não há título */
.bloco-destaque__texto h1:empty,
.bloco-destaque__texto h2:empty,
.bloco-destaque__texto h3:empty,
.bloco-destaque__texto h4:empty,
.bloco-destaque__texto h5:empty,
.bloco-destaque__texto h6:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
}

.bloco-destaque__texto > *:first-child { margin-top: 0; }


/* === OMSA TOC === */
.omsa-toc { padding: 16px; border-radius: 8px; background: #f6f6f6; margin: 16px 0; }
.omsa-toc .omsa-toc-title { font-weight: 600; margin-bottom: 8px; }
.omsa-toc-list { margin: 0; padding-left: 20px; }
.omsa-toc-list .level-3 { margin-left: 12px; font-size: .95em; }
.omsa-toc.preview a { pointer-events: none; text-decoration: none; }


/* === OMSA TOC v2 (design melhor) === */
.omsa-toc {
  width: 100%;
  clear: both;
  margin: 24px 0;
  padding: 20px 24px;
  border-radius: 12px;
  background: #f7f7f8;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
}
.omsa-toc .omsa-toc-title {
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: .2px;
}
.omsa-toc-list {
  margin: 0;
  padding-left: 20px;
}
.omsa-toc-list li {
  margin: 6px 0;
  line-height: 1.6;
}
.omsa-toc-list .level-3 { margin-left: 12px; font-size: .95em; }
.omsa-toc a { text-decoration: none; }
.omsa-toc a:hover { text-decoration: underline; }
.omsa-toc.preview a { pointer-events: none; }


/* === OMSA TOC v3 (collapsible) === */
.omsa-toc { position: relative; }
.omsa-toc .omsa-toc-header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 8px;
}
.omsa-toc .omsa-toc-toggle {
  appearance: none; border: 1px solid rgba(0,0,0,.15); background: #fff; padding: 6px 10px;
  border-radius: 6px; cursor: pointer; font-size: 0.9rem; line-height: 1;
}
.omsa-toc .omsa-toc-toggle:hover { background: #f1f1f1; }
.omsa-toc.is-collapsed .omsa-toc-list { overflow: hidden; }
.omsa-toc .omsa-toc-list { transition: max-height .25s ease; }


/* === OMSA TOC v3.1 (strong collapse + mobile) === */
.omsa-toc { width: 100%; }
.omsa-toc .omsa-toc-list { transition: max-height .25s ease; }
.omsa-toc.is-collapsed .omsa-toc-list {
  max-height: 0 !important;
  overflow: hidden;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: none;
}

/* Mobile-friendly */
@media (max-width: 768px) {
  .omsa-toc { padding: 16px 16px; border-radius: 10px; }
  .omsa-toc .omsa-toc-toggle { padding: 10px 12px; font-size: 1rem; }
  .omsa-toc .omsa-toc-title { font-size: 1.05rem; }
  .omsa-toc-list { padding-left: 18px; }
  .omsa-toc-list li { line-height: 1.7; }
}
