@charset "UTF-8";

     @media screen and (max-width: 1023px){ } @media screen and (max-width: 834px){ } @media screen and (max-width: 480px){ }
add_action( 'init', function () {
$rank_math_meta_keys = array(
'rank_math_title',
'rank_math_description',
'rank_math_focus_keyword',
);
foreach ( $rank_math_meta_keys as $meta_key ) {
register_post_meta( 'post', $meta_key, array(
'show_in_rest'  => true,
'single'        => true,
'type'          => 'string',
'auth_callback' => function () {
return current_user_can( 'edit_posts' );
},
) );
}
} );