/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Description: Child theme for GeneratePress with mobile spacing fix
Author: Vikash
Template: generatepress
Version: 1.0
*/

/* Mobile spacing fix for GeneratePress */
@media (max-width: 768px) {
    .inside-article {
        padding: 10px !important; /* Content ka padding kam karega */
    }
    .entry-title {
        margin-bottom: 10px !important; /* Title ke neeche ka gap kam */
    }
    .entry-content {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    body {
        overflow-x: hidden; /* Side scrolling ka issue hatayega */
    }
}

/* Remove large top space in single posts */
.single .site-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
