/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
/* ================================================
   GeneratePress Custom Container Width Rules
   ================================================ */

/* 🏠 HOMEPAGE: Always 1200px on desktop & large screens */
@media (min-width: 1025px) {
    .home .site,
    .home .grid-container,
    .home .site-content,
    .home .inside-article,
    .home .site-main,
    .home .inside-header,
    .home .inside-footer-widgets,
    .home .inside-site-info {
        max-width: 1200px !important;
        width: 1200px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* 📄 POSTS & PAGES: 1000px for normal desktops */
@media (min-width: 1025px) and (max-width: 1399px) {
    body:not(.home) .site,
    body:not(.home) .grid-container,
    body:not(.home) .site-content,
    body:not(.home) .inside-article,
    body:not(.home) .site-main,
    body:not(.home) .inside-header,
    body:not(.home) .inside-footer-widgets,
    body:not(.home) .inside-site-info {
        max-width: 1000px !important;
        width: 1000px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* 🖥 POSTS & PAGES: 1200px for large monitors */
@media (min-width: 1400px) {
    body:not(.home) .site,
    body:not(.home) .grid-container,
    body:not(.home) .site-content,
    body:not(.home) .inside-article,
    body:not(.home) .site-main,
    body:not(.home) .inside-header,
    body:not(.home) .inside-footer-widgets,
    body:not(.home) .inside-site-info {
        max-width: 1200px !important;
        width: 1200px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}


