/* Mobile profile grid styling */
@media (max-width: 767px) {
    /* Make all profile fields in a 3-grid layout */
    .profile-fields-grid > div[class*="col-"] {
        width: 33.333% !important;
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
        margin-bottom: 5px !important;
    }
    
    /* Make text smaller and more compact */
    .profile-fields-grid .fs-15 {
        font-size: 12px !important;
        margin-bottom: 0 !important;
    }
    
    .profile-fields-grid .fs-14 {
        font-size: 11px !important;
        line-height: 1.2 !important;
    }
    
    /* Make location field also fit in the grid */
    .profile-fields-grid .col-6.col-md-12 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-top: 5px !important;
    }
}