/* ==========================================================================
   AI Governance Reference — Light Documentation Theme
   Light theme: left sidebar + white main content
   ========================================================================== */

/* ==========================================================================
   1. BASE / RESET
   ========================================================================== */

:root {
  --color-govern: #8b5cf6;
  --color-build: #3b82f6;
  --color-secure: #ef4444;
  --color-deploy: #10b981;
  --color-monitor: #f59e0b;
  --color-improve: #06b6d4;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f9fafb;
  color: #111827;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: inline-block; max-width: 100%; }
button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}
button { cursor: pointer; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ==========================================================================
   2. LAYOUT — Sidebar + Main Content
   ========================================================================== */

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 288px;
  background: #1e293b;
  color: #94a3b8;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 40;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.sidebar-inner {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.main-content {
  flex: 1;
  margin-left: 288px;
  min-height: 100vh;
}

.page-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 32px 32px 64px;
}

/* ==========================================================================
   3. SIDEBAR STYLES
   ========================================================================== */

.sidebar-logo {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  border-bottom: 1px solid #334155;
}

.sidebar-logo h1 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 4px;
}

.sidebar-logo p {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0;
}

.sidebar-logo svg { display: none; }

.sidebar-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 12px;
  background: #334155;
  border: none;
  border-radius: 6px;
  color: #94a3b8;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
}

.sidebar-search-wrapper {
  padding: 12px 16px;
  border-bottom: 1px solid #334155;
}

.sidebar-search:hover {
  background: #3b4f6b;
}

.sidebar-search svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #94a3b8;
}

.sidebar-search kbd {
  margin-left: auto;
  padding: 1px 6px;
  background: #1e293b;
  border: 1px solid #475569;
  border-radius: 3px;
  font-size: 0.7rem;
  color: #64748b;
}

.sidebar-nav {
  flex: 1;
  padding: 12px 12px;
}

.sidebar-section {
  margin-bottom: 2px;
}

.sidebar-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  border-radius: 6px;
}

.sidebar-section-title:hover { color: #ffffff; background: #334155; }

.sidebar-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.sidebar-section-title[aria-expanded="false"] .sidebar-chevron {
  transform: rotate(-90deg);
}

.sidebar-section-items {
  padding: 2px 0 4px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 0.875rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  border-radius: 6px;
}

.sidebar-link:hover {
  color: #ffffff;
  background: #334155;
}

.sidebar-link.active {
  color: #ffffff;
  background: #334155;
  font-weight: 500;
}

/* Sidebar domain dots */
.sidebar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sidebar-dot-govern { background: #8b5cf6; }
.sidebar-dot-build { background: #3b82f6; }
.sidebar-dot-secure { background: #ef4444; }
.sidebar-dot-deploy { background: #10b981; }
.sidebar-dot-monitor { background: #f59e0b; }
.sidebar-dot-improve { background: #06b6d4; }

/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
  color: #1e293b;
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 2.25rem; letter-spacing: -0.02em; margin-bottom: 16px; }
h2 { font-size: 1.5rem; margin-bottom: 12px; }
h3 { font-size: 1.125rem; margin-bottom: 8px; }
h4 { font-size: 1rem; margin-bottom: 6px; }

p { margin-bottom: 12px; line-height: 1.7; }
p:last-child { margin-bottom: 0; }

a.text-link, .content-section a {
  color: #3b82f6;
  text-decoration: underline;
  text-underline-offset: 2px;
}
a.text-link:hover, .content-section a:hover { color: #2563eb; }

.text-secondary { color: #64748b; }

/* ==========================================================================
   5. BREADCRUMBS
   ========================================================================== */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb a:hover { color: #2563eb; }

.breadcrumb .separator { color: #9ca3af; margin: 0 8px; }
.breadcrumb .current { color: #111827; font-weight: 500; }

/* ==========================================================================
   6. CARDS
   ========================================================================== */

.card {
  display: block;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border-color: #93c5fd;
}

.card h3 {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.card p {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Stat cards (homepage) */
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.stat-card .stat-count {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
}

.stat-card .stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }

/* Quick Link cards (homepage) */
.quick-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.quick-link-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border-color: #93c5fd;
}

.quick-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
}

.quick-link-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 2px;
}

.quick-link-card p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* Section heading (homepage) */
.section-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 16px;
}

/* ==========================================================================
   7. TABLES
   ========================================================================== */

.table-wrapper {
  overflow-x: auto;
  margin-bottom: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table thead { background: #f9fafb; }

.data-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #6b7280;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

.data-table tbody tr:last-child td { border-bottom: none; }

.data-table tbody tr:hover { background: #f9fafb; }

.data-table .clickable { cursor: pointer; }
.data-table .clickable:hover { background: #f3f4f6; }

/* ==========================================================================
   8. BADGES & TAGS
   ========================================================================== */

/* Domain badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.badge-govern { background: #f3e8ff; color: #7c3aed; }
.badge-build { background: #dbeafe; color: #2563eb; }
.badge-secure { background: #fee2e2; color: #dc2626; }
.badge-deploy { background: #d1fae5; color: #059669; }
.badge-monitor { background: #fef3c7; color: #d97706; }
.badge-improve { background: #cffafe; color: #0891b2; }

/* Framework tags */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.tag:hover { opacity: 0.8; }

.tag-iso { background: #dbeafe; color: #1d4ed8; }
.tag-nist { background: #d1fae5; color: #047857; }
.tag-owasp-llm { background: #fee2e2; color: #b91c1c; }
.tag-owasp-agentic { background: #ffedd5; color: #c2410c; }
.tag-cis { background: #f3e8ff; color: #7c3aed; }

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

/* Tier badges */
.tier-1 {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #fef3c7;
  color: #92400e;
}

.tier-2 {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #e0e7ff;
  color: #3730a3;
}

/* ==========================================================================
   9. CALLOUT BOXES
   ========================================================================== */

.callout-warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 16px 24px;
  margin-bottom: 24px;
}

.callout-warning h3, .callout-warning h2 {
  color: #92400e;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.callout-info {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  padding: 24px;
  margin-bottom: 24px;
}

.callout-info h3, .callout-info h2 {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ==========================================================================
   10. FILTER BAR
   ========================================================================== */

.filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.filter-pill {
  padding: 5px 14px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.15s;
}

.filter-pill:hover { background: #e2e8f0; }

.filter-pill.active {
  background: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
}

.filter-pill[data-filter="govern"].active { background: #8b5cf6; border-color: #8b5cf6; }
.filter-pill[data-filter="build"].active { background: #3b82f6; border-color: #3b82f6; }
.filter-pill[data-filter="secure"].active { background: #ef4444; border-color: #ef4444; }
.filter-pill[data-filter="deploy"].active { background: #10b981; border-color: #10b981; }
.filter-pill[data-filter="monitor"].active { background: #f59e0b; border-color: #f59e0b; }
.filter-pill[data-filter="improve"].active { background: #06b6d4; border-color: #06b6d4; }

.filter-clear {
  padding: 5px 14px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #ef4444;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s;
}

.filter-clear:hover { background: #fef2f2; }

.filter-divider {
  width: 1px;
  height: 20px;
  background: #e2e8f0;
  margin: 0 4px;
}

/* ==========================================================================
   11. ACCORDION
   ========================================================================== */

.accordion {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
  background: #f8fafc;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
}

.accordion-header:hover { background: #f1f5f9; }

.accordion-header .chevron {
  width: 18px;
  height: 18px;
  color: #94a3b8;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.accordion.open .accordion-header .chevron { transform: rotate(180deg); }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion.open .accordion-content { max-height: 2000px; }

.accordion-body {
  padding: 16px;
  border-top: 1px solid #e2e8f0;
}

.accordion-body ul { list-style: none; padding: 0; }

.accordion-body li {
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: #475569;
}

.accordion-body li:last-child { border-bottom: none; }

.accordion-body li span:first-child {
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   12. SEARCH MODAL
   ========================================================================== */

.search-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
}

.search-modal.active {
  display: flex;
}

.search-modal-content {
  width: 100%;
  max-width: 600px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.search-input-wrapper svg { flex-shrink: 0; color: #94a3b8; }

.search-input {
  flex: 1;
  font-size: 1rem;
  color: #1e293b;
  background: transparent;
}

.search-input::placeholder { color: #94a3b8; }

.search-results {
  max-height: 400px;
  overflow-y: auto;
}

.search-result {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  text-decoration: none;
  color: inherit;
  transition: background 0.1s;
}

.search-result:hover, .search-result.active { background: #f1f5f9; }

.search-result-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
}

.search-result-desc {
  font-size: 0.8rem;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-group-heading {
  padding: 8px 20px 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.search-empty {
  padding: 24px 20px;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

.search-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  border-top: 1px solid #e2e8f0;
  font-size: 0.75rem;
  color: #94a3b8;
}

.search-kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  padding: 1px 6px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 0.7rem;
  font-family: inherit;
  color: #64748b;
}

/* ==========================================================================
   13. CONTENT SECTIONS
   ========================================================================== */

.content-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  padding: 24px;
  margin-bottom: 24px;
}

.content-section:last-child { margin-bottom: 0; }

.content-section h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.content-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 12px;
}

.content-section ol {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 12px;
}

.content-section li {
  margin-bottom: 6px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.content-section pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 16px 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.content-section code {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.85em;
}

.content-section p code {
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  color: #1e293b;
}

/* ==========================================================================
   14. HERO SECTION (homepage)
   ========================================================================== */

.hero {
  padding: 20px 0 32px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 640px;
  line-height: 1.7;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  font-weight: 400;
}

/* ==========================================================================
   15. SECTION HEADERS
   ========================================================================== */

.section {
  margin-bottom: 40px;
}

.section-header {
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 8px;
}

.section-header p {
  color: #64748b;
  font-size: 0.95rem;
}

/* ==========================================================================
   16. UTILITY CLASSES
   ========================================================================== */

.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.mb-sm { margin-bottom: 8px; }
.mb-md { margin-bottom: 16px; }
.mb-lg { margin-bottom: 24px; }
.mb-xl { margin-bottom: 32px; }
.mt-lg { margin-top: 24px; }
.text-center { text-align: center; }

/* ==========================================================================
   17. FOOTER
   ========================================================================== */

.site-footer {
  padding: 12px 0;
  border-top: 1px solid #e5e7eb;
  margin-top: 48px;
  font-size: 0.75rem;
  color: #9ca3af;
  line-height: 1.6;
}

.site-footer a {
  color: #6b7280;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer a:hover { color: #2563eb; }

/* ==========================================================================
   18. MOBILE HEADER
   ========================================================================== */

.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #1e293b;
  color: #f1f5f9;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.mobile-logo {
  font-weight: 700;
  font-size: 1rem;
  color: #f1f5f9;
  text-decoration: none;
}

.hamburger {
  padding: 8px;
  color: #f1f5f9;
}

.mobile-search-btn {
  padding: 8px;
  color: #94a3b8;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 35;
}

.mobile-overlay.active { display: block; }

/* ==========================================================================
   19. RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .sidebar.mobile-open {
    transform: translateX(0);
    z-index: 50;
  }

  .mobile-header { display: flex; }

  .main-content {
    margin-left: 0;
    padding-top: 56px;
  }

  .page-container { padding: 24px 20px 48px; }

  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }

  h1 { font-size: 1.75rem; }
  .hero h1 { font-size: 2rem; }

  .page-container { padding: 16px 16px 40px; }

  .filter-bar { gap: 4px; }
  .filter-pill { font-size: 0.7rem; padding: 4px 10px; }
}

/* ==========================================================================
   20. PRINT
   ========================================================================== */

@media print {
  .sidebar, .mobile-header, .search-modal { display: none !important; }
  .main-content { margin-left: 0; }
}
