/*
Theme Name: Inspiro Child
Description: Child theme for Inspiro
Template: inspiro
Version: 1.0.0
Author: Mike Gipson
*/

/* -------------------------------------------------------
   Fix: CSS variables cannot be used in @media queries.
   These replace 5 broken rules in assets/css/style.css.
   1260px = container width (1200) + 60px buffer
   1010px = narrow container width (950) + 60px buffer
------------------------------------------------------- */

@media (max-width: 1260px) {
    .single.has-sidebar.page-layout-sidebar-right .entry-header .inner-wrap,
    .single .entry-wrapper,
    .page .entry-content,
    .page:not(.inspiro-front-page) .entry-footer,
    .wp-block-group > .wp-block-group__inner-container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 1010px) {
    .single .entry-header .inner-wrap,
    .single .entry-content,
    .single .entry-footer,
    #comments {
        padding-left: 30px;
        padding-right: 30px;
    }
}