/* Styles responsifs pour les citations hébraïques */

/* Media queries pour l'adaptation sur petits écrans */
@media only screen and (max-width: 768px) {
    .hebrew-text {
        font-size: 1.5rem;
        padding: 15px;
    }
    
    .hebrew-verse {
        font-size: 1.8rem;
        white-space: normal !important;
        overflow: visible !important;
        line-height: 1.5;
        border-right: none !important;
        width: 100% !important;
    }
    
    .hebrew-blessing {
        font-size: 1.2rem;
        white-space: normal !important;
        overflow: visible !important;
        line-height: 1.5;
        border-right: none !important;
        width: 100% !important;
    }
    
    /* Désactivation de l'animation de typewriter qui tronque le texte */
    .hebrew-verse,
    .hebrew-blessing-first,
    .hebrew-blessing-second {
        animation: glowText 12s infinite ease-in-out !important;
    }
    
    .quote-intro {
        font-size: 1.1rem;
    }

    .quote-translation {
        font-size: 0.95rem;
    }
}

@media only screen and (max-width: 480px) {
    .hebrew-text {
        font-size: 1.3rem;
        padding: 10px;
    }
    
    .hebrew-verse {
        font-size: 1.5rem;
    }
    
    .hebrew-blessing {
        font-size: 1rem;
    }
    
    .quote-intro {
        font-size: 1rem;
    }

    .quote-translation {
        font-size: 0.9rem;
    }
}
