/*
Theme Name: Klosterlöwen Karlshuld Pro – No Sidebar
Theme URI: https://example.org/klosterloewen-karlshuld-pro-nosidebar
Author: OpenAI
Description: Child-Theme für Klosterlöwen Karlshuld Pro. Entfernt die Sidebar vollständig und nutzt 90% Browserbreite für Seiten, Beiträge und Suche.
Version: 2.0.1
Requires at least: 6.0
Requires PHP: 7.4
Template: klosterloewen-karlshuld-pro
Text Domain: klosterloewen-nosidebar
License: GNU General Public License v2 or later
*/

/* Sidebar komplett ausblenden und Layout auf Vollbreite setzen */
#secondary,
.widget-area,
aside.widget-area {
  display: none !important;
}

.layout,
.content-area--full {
  display: block !important;
  grid-template-columns: 1fr !important;
}

.layout .site-main,
.content-area--full .site-main {
  width: 100% !important;
  max-width: none !important;
}

.page .content-area.container,
.single .content-area.container,
.search .content-area.container,
.error404 .content-area.container,
.blog .content-area.container,
.archive .content-area.container {
  width: 90vw !important;
  max-width: 1700px !important;
}

.site-main > article,
.site-main .comments-area,
.site-main .post-navigation,
.site-main .posts-navigation {
  width: 100%;
}

@media (max-width: 1080px) {
  .layout,
  .content-area--full {
    display: block !important;
  }

  .page .content-area.container,
  .single .content-area.container,
  .search .content-area.container,
  .error404 .content-area.container,
  .blog .content-area.container,
  .archive .content-area.container {
    width: min(90vw, calc(100% - 1.25rem)) !important;
  }
}
