/* Styles responsive uniquement pour la section typing sur mobile */
@media (max-width: 768px) {
    .banner .typing > * {
        white-space: normal !important;
        overflow: visible !important;
        animation: none !important;
        width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        display: block !important;
        height: auto !important;
        max-width: 100% !important;
    }
    
    .banner .typing h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .banner .typing h3 {
        font-size: 20px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .banner .typing h1 {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .banner .typing h3 {
        font-size: 18px;
        line-height: 1.2;
    }
}

@media (max-width: 360px) {
    .banner .typing h1 {
        font-size: 20px;
        line-height: 1.2;
    }
    
    .banner .typing h3 {
        font-size: 16px;
        line-height: 1.2;
    }
} 