/* ==========================================================================
   Tipografías para Idiomas Originales - Arenivar Ministry
   ========================================================================== */

/* Carga local de fuente Griega */
@font-face {
    font-family: 'SBL Greek';
    src: url('fonts/sblgreek.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Muestra una fuente del sistema mientras carga, vital para SEO y velocidad */
}

/* Carga local de fuente Hebrea */
@font-face {
    font-family: 'SBL Hebrew';
    src: url('fonts/sblhebrew.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Clases de utilidad para aplicar en el editor Gutenberg */
.texto-griego {
    font-family: 'SBL Greek', serif;
    font-size: 1.25em; /* Ligeramente más grande para facilitar la lectura */
    line-height: 1.6;
}

.texto-hebreo {
    font-family: 'SBL Hebrew', serif;
    font-size: 1.35em;
    line-height: 1.6;
    direction: rtl; /* Fuerza la lectura de derecha a izquierda */
    text-align: right;
    unicode-bidi: bidi-override;
}