/* BOF Bible Reader — Plugin-specific styles */
/* Estilos adicionais que complementam o reader do tema */

/* Smooth reading mode */
.bof-bible-reader .bof-reader {
  background: var(--bof-white);
  padding: var(--bof-space-xl) var(--bof-space-xl);
  border-radius: var(--bof-radius-lg);
  box-shadow: var(--bof-shadow);
  margin: var(--bof-space-lg) auto;
}

@media (max-width: 767px) {
  .bof-bible-reader .bof-reader {
    padding: var(--bof-space-md);
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

/* Verse reading typography enhancement */
.bof-bible-reader .bof-verse {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 2;
  padding: 0.5rem 0 0.5rem var(--bof-space-2xl);
}

/* Verse number styling */
.bof-bible-reader .bof-verse-num {
  font-size: 0.7rem;
  top: 0.625rem;
}

/* Print optimization */
@media print {
  .bof-bible-reader .bof-reader {
    box-shadow: none;
    background: #fff;
    padding: 0;
  }
}
