/*
Theme Name: Lake County Ohio - Full Width Content
Theme URI: https://www.lakecountyohio.gov
Description: Child theme of lakecountyohio-theme. Overrides the sidebar grid layout for sub-site pages that don't use the department menu, allowing full-width content layouts.
Author: Lake County Ohio IT
Template: lakecountyohio-theme
Version: 1.0.0
*/

/* 
  Override the sub-site content page grid layout.
  The parent theme uses a 5-column grid:
  1fr | sidebar(18rem) | content(max 44rem) | sidebar(18rem) | 1fr
  
  This override makes the content span the full inner width
  (menu + content + sidebar columns = up to 80rem) when
  the department menu is hidden/empty.
*/

@media (min-width: 1152px) {
  .sub-site .content-page .menu {
    display: none !important;
  }

  .sub-site .content-page .content {
    grid-column: 1 / -1 !important;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .sub-site .content-page .content > * {
    max-width: var(--wp--custom--layout--wide) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
