/*
Theme Name: GSN-twentytwentyfour
Theme URI: https: //wordpress.com/
Description: A child theme for the Twenty Twenty-Four theme.
Author: Joe Media Group
Author URI: https: //joemedia.group/
Template: twentytwentyfour
Version: 1.0.0
*/

/* Base styles for responsive visibility */
.phone-only {
    display: none;
}

.no-phone {
    display: block;
}

/* Styles for phones */
@media (max-width: 781px) {
    body .phone-only {
        display: block !important;
    }

    body .no-phone {
        display: none !important;
    }
}

/* Styles for non-phones (tablets, desktops) */
@media (min-width: 781px) {
    body .phone-only {
        display: none !important;
    }

    body .no-phone {
        display: block !important;
    }
}