/* Mobile Logo Text Fix - Ensure logo text is always visible */
@media (max-width: 768px) {
    .logo {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .logo-text {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        line-height: 1.1 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .logo-text span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.85rem !important;
        white-space: nowrap !important;
        text-shadow: none !important;
        color: #051a2e !important;
        font-weight: 700 !important;
        -webkit-text-fill-color: #051a2e !important;
        filter: none !important;
    }

    .logo-text span:first-child {
        font-weight: 700 !important;
        color: #051a2e !important;
        text-shadow: none !important;
        -webkit-text-fill-color: #051a2e !important;
    }

    .logo-text span:first-child span {
        color: #d32f2f !important;
        -webkit-text-fill-color: #d32f2f !important;
        text-shadow: none !important;
    }

    .logo-text span:last-child {
        font-weight: 700 !important;
        color: #051a2e !important;
        font-size: 0.8rem !important;
        letter-spacing: 0.5px !important;
        text-shadow: none !important;
        -webkit-text-fill-color: #051a2e !important;
    }

    .logo img {
        height: 40px !important;
        width: auto !important;
    }
}

@media (max-width: 480px) {
    .logo-text span {
        font-size: 0.75rem !important;
    }

    .logo-text span:last-child {
        font-size: 0.7rem !important;
    }

    .logo img {
        height: 35px !important;
    }
}
