:root {
  --purple: #804092;
  --purple-dark: #633071;
  --purple-soft: #f5eef7;
  --grey: #797979;
  --dark: #2e323b;
  --ink: #20232a;
  --muted: #666b74;
  --paper: #ffffff;
  --canvas: #f5f6f8;
  --line: #dfe1e6;
  --green: #2f7650;
  --shadow: 0 12px 34px rgba(32, 35, 42, .08);
  color: var(--ink);
  background: var(--canvas);
  font-family: "Montserrat", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; background: var(--canvas); }
a { color: var(--purple); text-underline-offset: 3px; }
button, input, textarea, select { font: inherit; }
h1, h2, h3 { margin-top: 0; color: var(--dark); letter-spacing: -.025em; }
h1 { font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; font-weight: 800; }
h2 { font-size: clamp(1.45rem, 2.6vw, 2rem); font-weight: 700; }
h3 { font-weight: 700; }
p { line-height: 1.65; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.site-header { position: sticky; top: 0; z-index: 20; height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(24px, calc((100vw - 1240px)/2)); color: #fff; background: rgba(0, 0, 0, .98); box-shadow: 0 1px rgba(255,255,255,.12); }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.brand-logo { width: 42px; height: 42px; display: grid; place-items: center; overflow: hidden; border-radius: 7px; background: #000; }
.brand-logo img { width: 38px; height: 38px; object-fit: contain; }
.brand-name { display: flex; align-items: baseline; gap: 8px; }
.brand-name strong { font-size: 18px; font-weight: 800; letter-spacing: .02em; }
.brand-name span { padding-left: 9px; border-left: 1px solid rgba(255,255,255,.55); color: #d8d9dd; font-size: 15px; font-weight: 500; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a, .text-button { padding: 9px 0; border: 0; color: #fff; background: none; text-decoration: none; cursor: pointer; font-weight: 600; }
.site-nav a:hover, .text-button:hover { color: #e6cfea; }
.site-nav form { margin: 0; }
.site-nav .icon-nav-button { width: 42px; height: 42px; display: grid; place-items: center; padding: 10px; border: 0; border-radius: 7px; color: #fff; background: transparent; cursor: pointer; }
.site-nav .icon-nav-button:hover { color: #fff; background: rgba(255,255,255,.12); }
.site-nav .icon-nav-button svg { width: 20px; height: 20px; fill: currentColor; }
.menu-button { display: none; padding: 9px 13px; border: 1px solid rgba(255,255,255,.3); border-radius: 7px; color: #fff; background: transparent; font-weight: 600; }
.hero { padding: 58px max(24px, calc((100vw - 1240px)/2)); color: #fff; background: var(--dark); }
.hero.compact { padding-block: 52px 48px; }
.hero h1 { max-width: 850px; margin-bottom: 12px; color: #fff; }
.hero > p { max-width: 720px; margin: 0; color: #e2e3e6; font-size: 17px; }
.eyebrow { margin: 0 0 10px; color: var(--purple); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.hero .eyebrow { color: #d9b7e1; }
.hidden { display: none!important; }
.search { display: flex; max-width: 980px; gap: 12px; margin-top: 25px; }
.search-field { position: relative; flex: 1; min-width: 0; }
.search-field svg { position: absolute; top: 50%; left: 18px; width: 21px; height: 21px; transform: translateY(-50%); fill: var(--purple); pointer-events: none; }
.search input { height: 54px; padding: 15px 17px 15px 52px; border: 2px solid transparent; border-radius: 8px; background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.16); font-size: 16px; }
.search input:focus { outline: none; border-color: #c99ed3; }
.search .filter-toggle { flex: 0 0 auto; border-color: #b980c7; color: #fff; background: transparent; }
.search .filter-toggle:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.search .filter-toggle span { margin-right: 8px; font-size: 20px; }
.vault-filter-panel { width: min(1240px,calc(100% - 48px)); margin: 24px auto 0; padding: 28px 32px; border: 1px solid #d8ccdc; border-radius: 12px; background: #fff; box-shadow: 0 3px 12px rgba(46,50,59,.04); }
.filter-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.filter-title h2 { margin: 0; font-size: 24px; }
.icon-button { padding: 4px 8px; border: 0; color: var(--purple); background: transparent; font-size: 22px; cursor: pointer; }
.filter-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.filter-grid label { margin: 0; font-size: 14px; }
.filter-actions { display: flex; gap: 10px; margin-top: 24px; }
.area-overview { width: min(1240px,calc(100% - 48px)); display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin: 30px auto 0; }
.area-card { position: relative; min-height: 190px; display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: #fff; text-decoration: none; box-shadow: 0 3px 0 rgba(46,50,59,.03); transition: border-color .18s ease,box-shadow .18s ease,transform .18s ease; }
.area-card:hover, .area-card.active { transform: translateY(-2px); border-color: var(--purple); box-shadow: var(--shadow); }
.area-card h2 { margin: 12px 0 7px; font-size: 23px; }
.area-card p { max-width: 510px; margin: 0; color: var(--muted); font-size: 14px; }
.area-card-count { color: var(--purple-dark); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border: 1px solid var(--purple); border-radius: 7px; color: #fff; background: var(--purple); text-decoration: none; font-weight: 700; cursor: pointer; }
.button:hover { background: var(--purple-dark); }
.button.secondary { color: var(--purple); background: #fff; border-color: #cdbfd1; }
.button.small { padding: 9px 12px; font-size: 13px; }
.workspace { width: min(1240px, calc(100% - 48px)); margin: 36px auto 76px; display: grid; grid-template-columns: 240px minmax(0,1fr); gap: 38px; }
.filters { position: sticky; top: 104px; align-self: start; padding: 20px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.filters h2 { margin: 0 0 14px; font-size: 19px; }
.filters h3 { margin: 26px 0 10px; font-size: 14px; }
.filter-link { display: flex; justify-content: space-between; gap: 12px; padding: 10px; border-radius: 6px; color: var(--ink); text-decoration: none; font-size: 14px; }
.filter-link b { color: var(--muted); }
.filter-link:hover, .filter-link.active { color: var(--purple-dark); background: var(--purple-soft); }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; }
.tag { display: inline-flex; padding: 6px 9px; border-radius: 999px; color: var(--purple-dark); background: var(--purple-soft); text-decoration: none; font-size: 12px; font-weight: 700; }
.tag.active { color: #fff; background: var(--purple); }
.results-heading, .page-heading, .article-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 28px; }
.results-heading { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.results-heading h2 { margin: 0; }
.pagebar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px 22px; margin-top: 22px; padding: 15px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.pagebar form, .pagebar nav { display: flex; align-items: center; gap: 10px; margin: 0; }
.pagebar label { display: flex; align-items: center; gap: 9px; margin: 0; white-space: nowrap; }
.pagebar select { width: auto; min-width: 76px; padding: 8px 30px 8px 10px; }
.pagebar .disabled { pointer-events: none; opacity: .45; }
.article-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-top: 20px; }
.article-card { min-height: 220px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: #fff; text-decoration: none; box-shadow: 0 2px 0 rgba(46,50,59,.02); transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.article-card:hover { transform: translateY(-2px); border-color: #b99dc0; box-shadow: var(--shadow); }
.article-card h3 { margin: 12px 0 7px; font-size: 19px; line-height: 1.35; }
.article-card p { margin: 0; color: var(--muted); font-size: 14px; }
.article-card small { margin-top: 11px; color: var(--muted); }
.category { color: var(--purple-dark); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.read-more { margin-top: auto; padding-top: 18px; color: var(--purple-dark); font-weight: 700; font-size: 14px; }
.empty { padding: 48px; border: 1px dashed #b8bbc2; border-radius: 10px; background: #fff; text-align: center; }
.article-shell { width: min(1040px, calc(100% - 48px)); margin: 30px auto 76px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 18px; color: var(--muted); font-size: 13px; }
.article-page { padding: clamp(24px,5vw,60px); border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow); }
.article-header { padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.article-header h1 { font-size: clamp(2rem,4vw,3rem); }
.lead { max-width: 720px; color: var(--muted); font-size: 18px; }
.article-dates { display: flex; flex-wrap: wrap; gap: 7px 20px; margin: 18px 0 0; color: var(--grey); font-size: 13px; font-weight: 500; }
.article-dates span + span { position: relative; }
.article-dates span + span::before { content: ""; position: absolute; top: .65em; left: -11px; width: 3px; height: 3px; border-radius: 50%; background: #aaa; }
.article-actions { display: flex; gap: 9px; }
.article-page > .tag-list { margin: 24px 0 10px; }
.article-body { margin-top: 30px; font-size: 16px; line-height: 1.75; }
.article-body h2 { margin-top: 2.2em; color: var(--dark); }
.article-body h3 { margin-top: 1.7em; }
.article-body img, .article-body video, .article-body iframe { max-width: 100%; height: auto; border-radius: 8px; }
.article-body iframe { width: 100%; aspect-ratio: 16/9; }
.article-body pre { overflow: auto; padding: 18px; border-radius: 7px; color: #fff; background: #20232a; }
.article-body table { width: 100%; border-collapse: collapse; }
.article-body th, .article-body td { padding: 10px; border: 1px solid var(--line); text-align: left; }
.article-body th { background: #f1f2f4; }
.article-history { margin-top: 48px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--grey); font-size: 13px; }
.article-history summary { width: fit-content; cursor: pointer; color: #666; font-weight: 700; }
.article-history summary span { margin-left: 5px; color: #999; font-weight: 500; }
.article-history ol { display: grid; gap: 10px; margin: 16px 0 0; padding-left: 22px; }
.article-history li { padding-left: 4px; color: #858585; }
.article-history li span { color: #666; font-weight: 600; }
.article-history time { margin-left: 8px; }
.article-history small { margin-left: 8px; color: #999; }
.deleted-notice { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; padding: 13px 16px; border: 1px solid #d8a8a4; border-radius: 8px; color: #7e2821; background: #fff1f0; font-size: 13px; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; margin-top: auto; padding: 27px max(24px, calc((100vw - 1240px)/2)); color: #fff; background: var(--grey); font-size: 13px; }
.login-shell { min-height: calc(100vh - 62px); display: grid; place-items: center; padding: 32px; background: var(--grey); }
.login-panel { width: min(900px,100%); display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border-radius: 14px; background: #fff; box-shadow: 0 26px 70px rgba(0,0,0,.3); }
.login-art { min-height: 470px; display: flex; flex-direction: column; justify-content: space-between; padding: 42px; color: #fff; background: #000; }
.login-logo { width: 88px; height: 88px; display: grid; place-items: center; border-radius: 12px; background: #000; }
.login-logo img { width: 76px; height: 76px; object-fit: contain; }
.login-art p { margin: 0; color: #fff; font-size: 32px; line-height: 1.2; font-weight: 800; }
.login-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px,7vw,70px); }
.login-content p:not(.eyebrow) { color: var(--muted); }
.google-button { width: 245px; display: flex; align-items: center; overflow: hidden; margin-top: 20px; border-radius: 6px; color: #fff; background: #4285f4; box-shadow: 0 2px 5px rgba(0,0,0,.27); text-decoration: none; font-size: 14px; font-weight: 600; }
.google-button:hover { background: #3367d6; }
.google-icon { width: 42px; display: grid; place-items: center; align-self: stretch; margin: 2px; border-radius: 4px; background: #fff; }
.google-icon svg { width: 18px; height: 18px; }
.google-button > span:last-child { flex: 1; padding: 10px 14px; text-align: center; }
.notice { padding: 12px; border-radius: 7px; color: #76520a!important; background: #fff4dc; }
.admin-shell { width: min(1240px, calc(100% - 48px)); margin: 38px auto 76px; }
.page-heading { margin-bottom: 26px; }
.page-heading h1 { margin: .15em 0; }
.page-heading p:not(.eyebrow) { margin: 0; color: var(--muted); }
.admin-table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.admin-table { width: 100%; min-width: 980px; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 15px; border-bottom: 1px solid var(--line); text-align: left; }
.admin-table th { color: var(--dark); background: #eff0f2; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.admin-table td small { display: block; color: var(--muted); }
.status { display: inline-block; padding: 5px 9px; border-radius: 999px; font-size: 11px; font-weight: 800; }
.status.published { color: var(--green); background: #e2f3e8; }
.status.draft { color: #7b5707; background: #fff0cf; }
.status.archived { color: #635e64; background: #eceaec; }
.status.deleted { color: #8b2620; background: #fbe3e1; }
.deleted-row { color: #888; background: #fafafa; }
.updated-col { width: 132px; min-width: 132px; white-space: nowrap; }
.select-col { width: 46px; min-width: 46px; text-align: center!important; }
.row-select, #select-page { width: 18px; height: 18px; min-height: 0; margin: 0; accent-color: var(--purple); cursor: pointer; }
.selectable-row { cursor: pointer; }
.selectable-row:hover, .selectable-row:focus-visible { outline: none; background: var(--purple-soft); }
.bulk-actions { position: sticky; top: 82px; z-index: 8; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; padding: 11px 14px; border: 1px solid #cbb8d1; border-radius: 9px; background: #fff; box-shadow: 0 8px 22px rgba(67,37,74,.08); }
.bulk-actions strong { margin-right: auto; }
.bulk-actions .text-button { color: var(--purple-dark); }
.role-form { display: flex; gap: 8px; }
.role-form select { min-width: 110px; }
.editor-grid { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 22px; }
.card { padding: 25px; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 4px 16px rgba(46,50,59,.04); }
label { display: grid; gap: 7px; margin-bottom: 20px; font-weight: 700; }
input, textarea, select { width: 100%; padding: 12px 13px; border: 1px solid #c7cad0; border-radius: 7px; color: var(--ink); background: #fff; }
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(128,64,146,.14); border-color: var(--purple); }
.actions { display: flex; gap: 10px; }
.danger-button { border-color: #a7312a; color: #fff; background: #a7312a; }
.danger-button:hover { background: #84251f; }
.delete-zone { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 26px; padding: 22px 25px; border: 1px solid #e0b9b6; border-radius: 10px; background: #fffafa; }
.delete-zone h2 { margin: 0 0 5px; font-size: 18px; }
.delete-zone p { margin: 0; color: var(--muted); font-size: 14px; }
.editor-main #editor { min-height: 480px; font-size: 16px; }
.ql-toolbar.ql-snow { border-color: var(--line); border-radius: 7px 7px 0 0; }
.ql-container.ql-snow { border-color: var(--line); border-radius: 0 0 7px 7px; }
.editor-sidebar { align-self: start; position: sticky; top: 94px; }
.source-note { display: grid; gap: 4px; padding: 12px; border-radius: 7px; background: var(--purple-soft); font-size: 13px; }
.source-note span { overflow-wrap: anywhere; }
.message-page { width: min(720px, calc(100% - 48px)); margin: 70px auto; }
.settings-nav { display: flex; gap: 7px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.settings-nav a { padding: 11px 15px; border-bottom: 3px solid transparent; color: var(--ink); text-decoration: none; font-weight: 700; }
.settings-nav a:hover { border-color: var(--purple); color: var(--purple-dark); }
.settings-section { scroll-margin-top: 96px; margin-bottom: 48px; }
.section-heading { margin-bottom: 16px; }
.section-heading h2 { margin-bottom: 6px; }
.section-heading p { margin: 0; color: var(--muted); }
.access-grant-form { display: grid; grid-template-columns: minmax(240px,420px) minmax(140px,190px) auto; align-items: end; gap: 10px; margin-bottom: 20px; }
.access-grant-form label { margin: 0; }
.access-grants { margin: 0 0 20px; padding: 18px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.access-grants h3 { margin: 0 0 12px; font-size: 15px; }
.grant-list { display: grid; gap: 9px; }
.grant-list > div { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 9px; border-top: 1px solid var(--line); }
.grant-list small { display: block; margin-top: 3px; color: var(--grey); }
.role-badge { padding: 5px 9px; border-radius: 999px; color: var(--purple-dark); background: var(--purple-soft); font-size: 11px; font-weight: 800; text-transform: capitalize; }
.tag-editor-list { overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.new-tag-form { display: grid; grid-template-columns: minmax(220px,420px) auto; align-items: end; justify-content: start; gap: 10px; margin-bottom: 16px; }
.new-tag-form label { margin: 0; }
.tag-editor-row { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.tag-editor-row:last-child { border-bottom: 0; }
.tag-edit-form { display: grid; grid-template-columns: minmax(180px,360px) minmax(90px,1fr) auto; align-items: center; gap: 12px; }
.tag-edit-form label { margin: 0; }
.tag-delete-form { display: grid; grid-template-columns: minmax(210px,260px) 40px; align-items: center; gap: 8px; }
.tag-delete-form label { margin: 0; }
.tag-delete-form select { padding-block: 9px; font-size: 12px; }
.tag-count { color: var(--grey); font-size: 13px; }
.icon-action { width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 7px; background: transparent; cursor: pointer; }
.icon-action svg { width: 20px; height: 20px; fill: currentColor; }
.icon-action.danger { color: #a7312a; }
.icon-action.danger:hover { background: #fff0ef; }
.area-link { font-weight: 700; }
.maintenance-page { min-height: 100vh; display: grid; place-items: center; padding: 28px; background: #000; }
.maintenance-card { width: min(620px,100%); padding: clamp(32px,7vw,62px); border-radius: 14px; background: #fff; box-shadow: 0 24px 70px rgba(0,0,0,.35); }
.maintenance-card img { width: 72px; height: 72px; margin-bottom: 30px; padding: 8px; border-radius: 10px; background: #000; }
.maintenance-card h1 { font-size: clamp(2rem,6vw,3rem); }
.maintenance-card > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
@media (max-width: 850px) {
  .article-grid { grid-template-columns: 1fr; }
  .area-overview { grid-template-columns: 1fr; }
  .workspace { grid-template-columns: 1fr; }
  .filters { position: static; padding: 15px; }
  .filters h2 { display: none; }
  .filter-link { display: inline-flex; margin: 0 5px 7px 0; border: 1px solid var(--line); }
  .editor-grid { grid-template-columns: 1fr; }
  .editor-sidebar { position: static; order: -1; }
  .login-panel { grid-template-columns: 1fr; }
  .login-art { min-height: 210px; }
  .results-heading, .page-heading, .article-header { flex-direction: column; align-items: stretch; }
  .article-actions { align-self: flex-start; }
}
@media (max-width: 650px) {
  .site-header { height: 64px; padding-inline: 15px; }
  .brand-logo { width: 38px; height: 38px; }
  .brand-logo img { width: 34px; height: 34px; }
  .brand-name strong { font-size: 16px; }
  .brand-name span { font-size: 13px; }
  .menu-button { display: block; }
  .site-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 16px 18px; background: var(--dark); box-shadow: 0 12px 20px rgba(0,0,0,.18); }
  .site-nav.open { display: flex; }
  .site-nav a, .text-button { display: block; width: 100%; padding: 13px; text-align: left; }
  .site-nav .icon-nav-button { width: 100%; height: 46px; display: flex; justify-content: flex-start; gap: 10px; padding: 13px; }
  .site-nav .icon-nav-button::after { content: attr(aria-label); font-weight: 600; }
  .hero.compact { padding: 38px 18px; }
  .search { flex-wrap: wrap; }
  .search-field { flex-basis: 100%; }
  .search .button { flex: 1; }
  .vault-filter-panel { width: calc(100% - 28px); padding: 22px 18px; }
  .filter-grid { grid-template-columns: 1fr; }
  .pagebar { align-items: stretch; flex-direction: column; }
  .pagebar form, .pagebar nav { justify-content: space-between; }
  .workspace, .admin-shell, .article-shell { width: calc(100% - 28px); margin-top: 22px; }
  .area-overview { width: calc(100% - 28px); margin-top: 18px; }
  .article-page { padding: 24px 18px; border-radius: 9px; }
  .article-card { min-height: 205px; padding: 20px; }
  .article-actions { width: 100%; }
  .article-actions > * { flex: 1; }
  .site-footer { flex-direction: column; padding: 23px 18px; }
  .login-shell { padding: 14px; }
  .login-art { padding: 26px; }
  .login-art p { font-size: 26px; }
  .login-content { padding: 32px 26px; }
  .google-button { width: min(245px,100%); }
  .admin-table-wrap { margin-inline: -2px; }
  .card { padding: 18px; }
  .page-heading .actions { width: 100%; }
  .page-heading .actions > * { flex: 1; }
  .delete-zone { align-items: stretch; flex-direction: column; }
  .tag-editor-row, .tag-edit-form { grid-template-columns: 1fr; }
  .tag-delete-form { width: 100%; grid-template-columns: minmax(0,1fr) 40px; }
  .new-tag-form { grid-template-columns: 1fr; }
  .access-grant-form { grid-template-columns: 1fr; }
  .tag-editor-row > form:last-child { justify-self: end; }
}
@media print {
  .site-header, .site-footer, .breadcrumbs, .article-actions, .tag-list { display: none!important; }
  body { background: #fff; }
  .article-shell { width: 100%; margin: 0; }
  .article-page { padding: 0; border: 0; box-shadow: none; }
  .article-header { padding-bottom: 16px; }
  .article-body { font-size: 11pt; }
  .article-body a { color: #000; text-decoration: underline; }
  .article-meta { font-size: 9pt; }
  @page { margin: .65in; }
}
