/*
 Theme Name:   GeneratePress Child
 Theme URI:    http://yourwebsite.com
 Description:  Child theme for GeneratePress
 Author:       Your Name
 Template:     generatepress
 Version:      1.0.0
*/

/* Import the parent theme’s style */
@import url("../generatepress/style.css");

/* Custom styles for homepage grid layout */



/* Adjust post width and layout for mobile */
@media (max-width: 768px) {
    .home .site-main {
        grid-template-columns: 1fr; /* Stack items on smaller screens */
    }
}
