/*
 Theme Name:   GravityRanger Child
 Theme URI:    https://gravityranger.com
 Description:  Custom GeneratePress child theme
 Author:       Chris Eggleston
 Author URI:   https://wpmantis.com
 Template:     generatepress
 Version:      0.1
*/

/**
 * Base styles for app layout
 * App layout CSS is enqueued separately via functions.php
 */

/* Ensure proper box-sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Base typography adjustments for app layout */
body.app-layout {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Ensure content area has proper spacing */
.app-content-wrapper .site-main {
    min-height: 100%;
}

/* Hide default GeneratePress elements that might still appear */
body.app-layout .site-header,
body.app-layout .main-navigation,

