/*
Theme Name: IbyLab News
Author: Daniel Oliveira
Description: Tema estrutural editorial orientado a shortcodes. Plugins controlam layout.
Version: 1.1
*/

:root {
  --iby-max-width: 1600px;
}

body {
  margin: 0;
  background: #f4f6f8;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Estrutura base */
.iby-site { width: 100%; }

/* Conteúdo editorial (plugins mandam) */
.iby-editorial {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Conteúdo institucional boxed */
.iby-boxed {
  max-width: var(--iby-max-width);
  margin: 0 auto;
  padding: 40px 20px;
}

/* FULL WIDTH */
.iby-full {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Debug visual */
.iby-debug .iby-site { outline: 3px dashed red; }
.iby-debug .iby-editorial { outline: 3px dashed blue; }
.iby-debug .iby-boxed { outline: 3px dashed green; }

/* Sidebar nunca na home */
body.home .iby-sidebar { display: none; }
