/* ═══════════════════════════════════════════════════
   Thesis Jekyll Theme — main.css
   Fonts: Plus Jakarta Sans (UI) + Lora (body) + JetBrains Mono
   Colors: Orange primary #e8732a · Blue secondary #3b6fa0
   ═══════════════════════════════════════════════════ */

/* ─── Tokens ─── */
:root {
  --bg:          #faf9f6;
  --bg-sidebar:  #f2f0eb;
  --bg-card:     #ffffff;
  --text:        #1a1918;
  --text-muted:  #6b6864;
  --border:      #e0dcd2;
  --orange:      #e8732a;
  --orange-lt:   #fce9d8;
  --orange-dk:   #c05a10;
  --blue:        #3b6fa0;
  --blue-lt:     #dbe8f5;
  --header-bg:   #1e1d1b;
  --header-text: #f0ede8;
  --sidebar-w:   200px;
  --margin-w:    200px;
  --font-ui:     'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:   'Lora', Georgia, serif;
  --font-mono:   'JetBrains Mono', 'Courier New', monospace;
  --radius:      6px;
}

/* ─── Dark mode ─── */
[data-theme="dark"] {
  --bg:         #1c1b19;
  --bg-sidebar: #252320;
  --bg-card:    #2a2826;
  --text:       #f0ede8;
  --text-muted: #9b9690;
  --border:     #38352f;
  --orange-lt:  #3a2010;
  --blue-lt:    #0d2236;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.2s, color 0.2s;
}

/* ─── Header ─── */
.hdr {
  background: var(--header-bg);
  color: var(--header-text);
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  flex-shrink: 0;
  z-index: 100;
}
.hdr-title {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}
.hdr-sep { width: 1px; height: 20px; background: #444; flex-shrink: 0; }

/* Depth toggle */
.depth-toggle {
  display: flex;
  background: #2e2c2a;
  border-radius: var(--radius);
  padding: 3px;
  gap: 2px;
}
.depth-btn {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: #888;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.depth-btn.active { background: var(--orange); color: #fff; }
.depth-btn:hover:not(.active) { color: var(--header-text); }

.hdr-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.search-box {
  background: #2e2c2a;
  border: 1px solid #444;
  border-radius: 5px;
  color: #aaa;
  font-family: var(--font-ui);
  font-size: 11px;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  user-select: none;
}
.search-box:hover { border-color: #666; }
.search-box kbd {
  background: #444;
  border-radius: 3px;
  padding: 1px 4px;
  font-size: 9px;
  color: #999;
  font-family: var(--font-mono);
}
.icon-btn {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.15s;
  line-height: 1;
}
.icon-btn:hover { color: var(--header-text); }

/* ─── Progress bar ─── */
.progress-bar { height: 3px; background: var(--border); flex-shrink: 0; }
.progress-fill { height: 100%; background: var(--orange); width: 0%; transition: width 0.2s ease; }

/* ─── Layout ─── */
.layout-body { flex: 1; display: flex; overflow: hidden; }

/* ─── Sidebar ─── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--bg-sidebar);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  flex-shrink: 0;
  padding: 16px 0;
  transition: background 0.2s;
}
.sidebar-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 16px;
  margin-bottom: 8px;
}
.ch-item {
  font-family: var(--font-ui);
  font-size: 12.5px;
  padding: 5px 16px;
  cursor: pointer;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.1s, color 0.1s;
}
.ch-item:hover { background: var(--border); color: var(--text); }
.ch-item.active { color: var(--orange); font-weight: 600; }
.ch-num {
  font-family: var(--font-mono);
  font-size: 10px;
  width: 18px;
  flex-shrink: 0;
  color: inherit;
}
.h2-list { padding: 2px 0 6px 32px; }
.h2-item {
  font-family: var(--font-ui);
  font-size: 11px;
  padding: 3px 8px 3px 0;
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  border-left: 2px solid transparent;
  transition: color 0.1s, border-color 0.1s;
}
.h2-item:hover, .h2-item.active-h2 { color: var(--orange); border-left-color: var(--orange); }
.h2-item.active-h2 { font-weight: 500; }

/* ─── Main content ─── */
.main-col {
  flex: 1;
  overflow-y: auto;
  padding: 36px 44px;
  min-width: 0;
}

/* Abstract */
.abstract-box {
  background: var(--orange-lt);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 30px;
  transition: background 0.2s;
}
.abstract-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.abstract-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dk);
}
.abstract-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--orange);
  font-family: var(--font-ui);
  font-size: 11px;
}
.abstract-body { font-size: 14.5px; line-height: 1.7; }

/* Chapter title */
.ch-title {
  font-family: var(--font-ui);
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 28px;
  line-height: 1.2;
}
.ch-num-badge {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--orange);
  margin-right: 10px;
}

/* ─── Reading mode ─── */
body.reading-mode .sidebar,
body.reading-mode .margin-col { display: none; }
body.reading-mode .main-col { max-width: 700px; margin: 0 auto; padding: 36px 48px; }
#reading-mode-btn.active { color: var(--orange); }

/* ─── Chapter prev/next nav ─── */
.chapter-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--border); }
.ch-nav-prev, .ch-nav-next { flex: 1; }
.ch-nav-next { text-align: right; }
.ch-nav-link { display: inline-flex; flex-direction: column; gap: 2px; text-decoration: none; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); transition: border-color 0.15s, box-shadow 0.15s; max-width: 220px; }
.ch-nav-link:hover { border-color: var(--orange); box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.ch-nav-link--next { align-items: flex-end; }
.ch-nav-dir { font-family: var(--font-ui); font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); }
.ch-nav-title { font-family: var(--font-ui); font-size: 12.5px; color: var(--text); font-weight: 500; }
.ch-nav-home { font-size: 18px; color: var(--text-muted); text-decoration: none; padding: 6px; border-radius: 4px; transition: color 0.15s; flex-shrink: 0; }
.ch-nav-home:hover { color: var(--orange); }
@media (max-width: 600px) { .ch-nav-link { max-width: 140px; } .ch-nav-title { font-size: 11px; } }

/* Chapter meta row */
.ch-meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; border-bottom: 2px solid var(--border); padding-bottom: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.ch-meta .ch-title { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.ch-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.reading-time { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); white-space: nowrap; }
.print-btn { font-family: var(--font-ui); font-size: 11px; font-weight: 500; padding: 5px 12px; border: 1px solid var(--border); border-radius: 5px; background: var(--bg-card); color: var(--text-muted); cursor: pointer; transition: border-color 0.15s, color 0.15s; white-space: nowrap; }
.print-btn:hover { border-color: var(--orange); color: var(--orange); }

/* H2 sections */
.main-col h2 {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 36px 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  scroll-margin-top: 20px;
}
.main-col h2 .anchor-link {
  color: var(--border);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.15s;
}
.main-col h2:hover .anchor-link { color: var(--orange); }

/* Body text */
.main-col p { font-size: 15.5px; line-height: 1.85; margin-bottom: 16px; text-wrap: pretty; }
.main-col h3 { font-family: var(--font-ui); font-size: 15px; font-weight: 600; margin: 24px 0 10px; }
.main-col blockquote {
  border-left: 3px solid var(--orange);
  padding-left: 18px;
  margin: 22px 0;
  font-style: italic;
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
}
.main-col ul, .main-col ol { padding-left: 22px; margin-bottom: 16px; }
.main-col li { margin-bottom: 6px; font-size: 15.5px; line-height: 1.75; }
.main-col code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--bg-sidebar);
  padding: 1px 5px;
  border-radius: 3px;
}
.main-col pre { background: var(--bg-sidebar); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; overflow-x: auto; margin-bottom: 16px; }
.main-col pre code { background: none; padding: 0; }

/* ─── Practitioner vignettes ─── */
.main-col .placeholder, .main-col p.placeholder {
  background: transparent;
  border-left: 4px solid rgb(232, 115, 42);
  padding: 12px 16px;
  border-radius: 4px;
  font-style: italic;
  color: rgb(232, 115, 42);
  margin: 22px 0;
}
[data-theme="dark"] .main-col .placeholder,
[data-theme="dark"] .main-col p.placeholder {
  color: rgb(232, 115, 42);
}

/* ─── Depth content system ─── */
/* By default show academic; JS switches active class on body */
.d-academic, .d-professional, .d-social, .d-tldr { display: none; }
.d-all { display: block; }
body[data-depth="academic"]      .d-academic      { display: block; }
body[data-depth="professional"]  .d-professional  { display: block; }
body[data-depth="social"]        .d-social        { display: block; }
body[data-depth="tldr"]          .d-tldr          { display: block; }
/* Default fallback */
body:not([data-depth]) .d-academic { display: block; }

/* TLDR list style */
.tldr-list { list-style: none; padding-left: 0; }
.tldr-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-family: var(--font-ui); font-size: 15px; line-height: 1.55; }
.tldr-list li::before { content: '→'; color: var(--orange); flex-shrink: 0; }

/* ─── Sidenote markers ─── */
.sn-ref {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  border-radius: 50%;
  cursor: pointer;
  vertical-align: super;
  margin-left: 1px;
  transition: transform 0.1s, background 0.1s;
  flex-shrink: 0;
  line-height: 1;
  text-decoration: none;
}
.sn-ref:hover { transform: scale(1.15); }
.sn-ref.active { background: var(--orange-dk); }

/* ─── Citations ─── */
.citation-block {
  background: var(--bg-sidebar);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  padding: 14px 18px;
  margin-top: 44px;
}
.citation-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.citation-item {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 6px;
}

/* ─── Margin column ─── */
.margin-col {
  width: var(--margin-w);
  padding: 36px 14px 36px 18px;
  overflow-y: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid var(--border);
}
.margin-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.note-card {
  border-radius: var(--radius);
  padding: 10px 12px;
  border: 1px solid var(--border);
  font-size: 12px;
  line-height: 1.6;
  cursor: pointer;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.note-card.footnote { background: var(--orange-lt); border-color: var(--orange); }
.note-card.author { background: var(--bg-card); border-left: 3px solid var(--blue); }
.note-card.highlighted { box-shadow: 0 0 0 2px var(--orange); }
.note-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}
.note-type-badge {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.note-text { font-family: var(--font-ui); font-size: 11.5px; line-height: 1.55; color: var(--text); }

/* ─── Home page ─── */
.home-wrap { max-width: 680px; margin: 0 auto; padding: 60px 20px; }
.home-hero { margin-bottom: 48px; }
.home-label { font-family: var(--font-mono); font-size: 11px; color: var(--orange); margin-bottom: 12px; letter-spacing: 0.05em; }
.home-title { font-family: var(--font-ui); font-size: 36px; font-weight: 700; line-height: 1.2; margin-bottom: 12px; color: var(--text); }
.home-author { font-family: var(--font-ui); font-size: 14px; color: var(--text-muted); }
.home-section-label { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.home-ch-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  text-decoration: none;
  color: var(--text);
  background: var(--bg-card);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.home-ch-card:hover { border-color: var(--orange); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.home-ch-num { font-family: var(--font-mono); font-size: 11px; color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.home-ch-title { font-family: var(--font-ui); font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.home-ch-abstract { font-family: var(--font-ui); font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.home-ch-arrow { margin-left: auto; color: var(--border); font-size: 18px; flex-shrink: 0; transition: color 0.15s, transform 0.15s; }
.home-ch-card:hover .home-ch-arrow { color: var(--orange); transform: translateX(3px); }

/* ─── Search overlay ─── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  backdrop-filter: blur(3px);
}
.search-overlay[hidden] { display: none; }
.search-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 520px;
  max-width: 90vw;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.search-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.search-input {
  font-family: var(--font-ui);
  font-size: 15px;
  border: none;
  outline: none;
  flex: 1;
  background: transparent;
  color: var(--text);
}
.search-depth-filters {
  display: flex;
  gap: 4px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  align-items: center;
}
.filter-label { font-family: var(--font-ui); font-size: 10px; color: var(--text-muted); margin-right: 4px; }
.search-filter {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--text-muted);
  background: transparent;
  transition: background 0.1s, border-color 0.1s, color 0.1s;
}
.search-filter.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.search-results { padding: 8px; max-height: 300px; overflow-y: auto; }
.search-result {
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}
.search-result:hover { background: var(--bg-sidebar); }
.sr-meta { display: flex; gap: 6px; align-items: center; }
.sr-badge { font-family: var(--font-mono); font-size: 9px; background: var(--orange); color: #fff; padding: 1px 6px; border-radius: 3px; }
.sr-h2 { font-family: var(--font-ui); font-size: 12px; font-weight: 600; color: var(--text); }
.sr-depth { font-family: var(--font-ui); font-size: 9px; background: var(--blue-lt); color: var(--blue); padding: 1px 5px; border-radius: 3px; }
.sr-excerpt { font-family: var(--font-ui); font-size: 11.5px; color: var(--text-muted); }
.search-empty { padding: 24px 16px; font-family: var(--font-ui); font-size: 13px; color: var(--text-muted); text-align: center; }

/* ─── Scrollbars ─── */
.sidebar::-webkit-scrollbar,
.main-col::-webkit-scrollbar,
.margin-col::-webkit-scrollbar,
.search-results::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-thumb,
.main-col::-webkit-scrollbar-thumb,
.margin-col::-webkit-scrollbar-thumb,
.search-results::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ─── Landing page ─── */
.landing { max-width: 720px; margin: 0 auto; padding: 0 24px 80px; }
.landing-hero { padding: 64px 0 52px; border-bottom: 1px solid var(--border); margin-bottom: 52px; }
.landing-eyebrow { font-family: var(--font-mono); font-size: 11px; color: var(--orange); letter-spacing: 0.06em; margin-bottom: 14px; }
.landing-title { font-family: var(--font-ui); font-size: 38px; font-weight: 700; line-height: 1.15; color: var(--text); margin-bottom: 12px; text-wrap: pretty; }
.landing-sub { font-family: var(--font-ui); font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.landing-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary { font-family: var(--font-ui); font-size: 13px; font-weight: 600; padding: 10px 20px; background: var(--orange); color: #fff; border-radius: var(--radius); text-decoration: none; transition: background 0.15s; }
.btn-primary:hover { background: var(--orange-dk); }
.btn-secondary { font-family: var(--font-ui); font-size: 13px; font-weight: 500; padding: 10px 20px; background: transparent; color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; transition: border-color 0.15s, color 0.15s; }
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
.landing-section { margin-bottom: 56px; }
.landing-section-label { font-family: var(--font-ui); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 18px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.landing-prose p { font-size: 15.5px; line-height: 1.85; margin-bottom: 14px; color: var(--text); text-wrap: pretty; }
.landing-chapters { display: flex; flex-direction: column; gap: 8px; }
.landing-ebook-card { display: flex; gap: 20px; align-items: flex-start; background: var(--bg-sidebar); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; }
.landing-ebook-icon { font-size: 28px; flex-shrink: 0; }
.landing-ebook-title { font-family: var(--font-ui); font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.landing-ebook-desc { font-family: var(--font-ui); font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.contribute-steps { display: flex; flex-direction: column; gap: 14px; margin: 16px 0; }
.contribute-step { display: flex; gap: 14px; align-items: flex-start; }
.contribute-num { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--orange); background: var(--orange-lt); padding: 3px 7px; border-radius: 4px; flex-shrink: 0; margin-top: 2px; }
.contribute-step strong { font-family: var(--font-ui); }
.contribute-step div { font-family: var(--font-ui); font-size: 14px; line-height: 1.6; color: var(--text); }
.landing-license-card { background: var(--blue-lt); border: 1px solid var(--blue); border-radius: var(--radius); padding: 20px 22px; }
.license-badge { display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 700; background: var(--blue); color: #fff; padding: 3px 10px; border-radius: 4px; margin-bottom: 12px; letter-spacing: 0.04em; }
.license-body p { font-family: var(--font-ui); font-size: 14px; line-height: 1.7; color: var(--text); margin-bottom: 10px; }
.license-link { font-family: var(--font-ui); font-size: 13px; font-weight: 500; color: var(--blue); text-decoration: none; }
.license-link:hover { text-decoration: underline; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  :root { --margin-w: 0px; }
  .margin-col { display: none; }
}
@media (max-width: 680px) {
  :root { --sidebar-w: 0px; }
  .sidebar { display: none; }
  .hdr-title { max-width: 140px; }
  .depth-toggle { gap: 1px; }
  .depth-btn { padding: 4px 7px; }
  .main-col { padding: 20px 18px; }
}
@media print {
  .hdr, .progress-bar, .sidebar, .margin-col, .search-overlay { display: none !important; }
  body { overflow: visible; height: auto; }
  .layout-body { overflow: visible; }
  .main-col { overflow: visible; padding: 0; }
}
