
/* Utility classes for responsive text */
.mobile-text {
    display: none;
}

.desktop-text {
    display: inline;
}

@media (max-width: 768px) {
    .mobile-text {
        display: inline;
    }
    
    .desktop-text {
        display: none;
    }
}
