:root {
  --bg: #EEF1F4;
  --surface: #FFFFFF;
  --surface-2: #E2E8EC;
  --line: #D2DAE1;
  --text: #142230;
  --text-mute: #57646F;
  --accent: #2C6690;
  --accent-2: #4A90C4;
  --ok-bg: #E4F3EA; --ok-fg: #1F7A4C;
  --warn-bg: #FBF0DE; --warn-fg: #97621A;
  --crit-bg: #FBE8E5; --crit-fg: #A83D2F;
  --mute-bg: #E7EAED; --mute-fg: #57646F;
  --shadow: 0 1px 2px rgba(20,34,48,.06), 0 4px 14px rgba(20,34,48,.05);
  --font-sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", "Cascadia Mono", Consolas, "Liberation Mono", monospace;
  --radius: 10px;
  --dot-reztsoff: #8B93A0;
  --dot-swsteel: #4A90C4;
  --dot-swpipe: #4AB8F0;
  --dot-tank: #E24C4C;
  --dot-install: #F2C200;
  --chart-reztsoff: #5B6B80;
  --chart-swsteel: #4A90C4;
  --chart-swpipe: #2F9FE0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0A141D; --surface: #101F2C; --surface-2: #16293A; --line: #223243;
    --text: #E6EDF3; --text-mute: #93A5B3; --accent: #6FB2E0; --accent-2: #4A90C4;
    --ok-bg: #123324; --ok-fg: #59D293; --warn-bg: #3A2C10; --warn-fg: #E7B462;
    --crit-bg: #3A1D18; --crit-fg: #EC8577; --mute-bg: #182631; --mute-fg: #93A5B3;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.35);
  }
}
:root[data-theme="dark"] {
  --bg: #0A141D; --surface: #101F2C; --surface-2: #16293A; --line: #223243;
  --text: #E6EDF3; --text-mute: #93A5B3; --accent: #6FB2E0; --accent-2: #4A90C4;
  --ok-bg: #123324; --ok-fg: #59D293; --warn-bg: #3A2C10; --warn-fg: #E7B462;
  --crit-bg: #3A1D18; --crit-fg: #EC8577; --mute-bg: #182631; --mute-fg: #93A5B3;
  --shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.35);
}
:root[data-theme="light"] {
  --bg: #EEF1F4; --surface: #FFFFFF; --surface-2: #E2E8EC; --line: #D2DAE1;
  --text: #142230; --text-mute: #57646F; --accent: #2C6690; --accent-2: #4A90C4;
  --ok-bg: #E4F3EA; --ok-fg: #1F7A4C; --warn-bg: #FBF0DE; --warn-fg: #97621A;
  --crit-bg: #FBE8E5; --crit-fg: #A83D2F; --mute-bg: #E7EAED; --mute-fg: #57646F;
  --shadow: 0 1px 2px rgba(20,34,48,.06), 0 4px 14px rgba(20,34,48,.05);
}

* { box-sizing: border-box; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

html, body { margin: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
}

a { color: var(--accent-2); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 28px 24px 80px; }

.sticky-bar {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
}

header.top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 20px; margin-bottom: 16px;
  background: var(--bg);
}
.brand-eyebrow {
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-mute); font-weight: 600; margin: 0 0 6px;
}
h1 { margin: 0; font-size: 26px; letter-spacing: -.01em; text-wrap: balance; }
.top-meta { color: var(--text-mute); font-size: 13px; margin-top: 6px; font-variant-numeric: tabular-nums; }

.actions { display: flex; gap: 8px; }
button.pdf {
  font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer;
  background: var(--accent); color: #fff; border: none; border-radius: 8px;
  padding: 10px 16px; box-shadow: var(--shadow);
}
button.pdf:hover { background: var(--accent-2); }

nav.topnav {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 10px 0; margin-bottom: 28px;
  background: var(--bg);
}
nav.topnav .nav-label {
  font-size: 12.5px; color: var(--text-mute); font-weight: 600;
  margin-right: 2px; white-space: nowrap;
}
/* details/summary — inert wrapper on desktop (always "open" visually via the
   .nav-links rule below, regardless of the [open] attribute); becomes the
   actual collapse toggle only under the mobile media query further down. */
details.nav-menu > summary { display: none; }
.nav-links { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
nav.topnav a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text); text-decoration: none; font-size: 13.5px; font-weight: 600;
  padding: 7px 10px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
}
nav.topnav a:hover { background: var(--surface-2); border-color: var(--accent-2); color: var(--text); }
nav.topnav a:active { transform: translateY(1px); }
nav.topnav a[aria-current="page"] { background: var(--accent); color: #fff; border-color: var(--accent); }
nav.topnav .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.dot-reztsoff { background: var(--dot-reztsoff); }
.dot-swsteel { background: var(--dot-swsteel); }
.dot-swpipe { background: var(--dot-swpipe); }
.dot-tank { background: var(--dot-tank); }
.dot-install { background: var(--dot-install); }

.back-link { display: inline-block; margin-bottom: 16px; font-size: 13.5px; font-weight: 600; }

.site-hero { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.site-hero .dot { width: 14px; height: 14px; border-radius: 50%; flex: none; }
.site-hero h1 { margin: 0; }
.site-hero .domain { color: var(--text-mute); font-family: var(--font-mono); font-size: 14px; }

.kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-bottom: 28px; }
.kpi {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow);
}
.kpi .label { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-mute); font-weight: 600; }
.kpi .value { font-family: var(--font-mono); font-size: 28px; margin-top: 6px; font-variant-numeric: tabular-nums; }
.kpi .sub { font-size: 12.5px; color: var(--text-mute); margin-top: 4px; }
.kpi.warn .value { color: var(--warn-fg); }
.kpi.ok .value { color: var(--ok-fg); }
.kpi.crit .value { color: var(--crit-fg); }
.kpi.ok .sub { color: var(--ok-fg); }
.kpi.crit .sub { color: var(--crit-fg); }

section { margin-bottom: 32px; }
h2 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-mute); margin: 0 0 12px; font-weight: 700; }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.card-pad { padding: 18px 20px; }

table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--text-mute); font-weight: 700; }
tr:last-child td { border-bottom: none; }
.table-wrap { overflow-x: auto; }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; }

.pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.pill.ok { background: var(--ok-bg); color: var(--ok-fg); }
.pill.warn { background: var(--warn-bg); color: var(--warn-fg); }
.pill.crit { background: var(--crit-bg); color: var(--crit-fg); }
.pill.mute { background: var(--mute-bg); color: var(--mute-fg); }

.two-col { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; align-items: start; }
.two-col-even { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
@media (max-width: 860px) { .two-col, .two-col-even { grid-template-columns: 1fr; } }

.board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 720px) { .board { grid-template-columns: 1fr; } }
.col-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.col-head .name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-mute); }
.col-head .count { font-family: var(--font-mono); font-size: 12px; color: var(--text-mute); }
.board-col { background: var(--surface-2); border-radius: var(--radius); padding: 10px; min-height: 60px; }
.task {
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px;
  padding: 10px 12px; font-size: 13px; margin-bottom: 8px; box-shadow: var(--shadow);
}
.task:last-child { margin-bottom: 0; }
.task .owner { font-family: var(--font-mono); font-size: 11px; color: var(--accent-2); display: block; margin-bottom: 3px; }
.task .blocker { color: var(--crit-fg); font-size: 12px; margin-top: 4px; }
.board-col.empty { display: flex; align-items: center; justify-content: center; color: var(--text-mute); font-size: 12.5px; min-height: 60px; }

/* История (сделано) — левая колонка рядом с чек-листом */
ul.history { list-style: none; margin: 0; padding: 0; }
ul.history li {
  padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px;
}
ul.history li:last-child { border-bottom: none; }
ul.history .date {
  font-family: var(--font-mono); font-size: 11px; color: var(--ok-fg);
  display: block; margin-bottom: 3px; font-weight: 700;
}
ul.history .who { color: var(--text-mute); }
.checklist-empty { color: var(--text-mute); font-size: 13.5px; font-style: italic; }

.report h3 { font-size: 15px; margin: 18px 0 6px; }
.report h3:first-child { margin-top: 0; }
.report ul { margin: 4px 0; padding-left: 20px; }
.report li { margin-bottom: 4px; }
.report .metrics-note { font-size: 12.5px; color: var(--text-mute); font-style: italic; margin-bottom: 8px; }

.strategy-note { font-size: 14px; color: var(--text-mute); }
.strategy-note strong { color: var(--text); }
.strategy-note p { margin: 0 0 10px; }
.strategy-note p:last-child { margin-bottom: 0; }

footer {
  border-top: 1px solid var(--line); margin-top: 12px; padding-top: 16px;
  font-size: 12.5px; color: var(--text-mute);
}

/* Заказчик-чеклист */
.tasklist-summary { font-size: 13px; color: var(--text-mute); margin: 0 0 12px; }
.tasklist-summary strong { color: var(--text); }
ul.tasklist { list-style: none; margin: 0; padding: 0; }
ul.tasklist li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14px;
}
ul.tasklist li:last-child { border-bottom: none; }
ul.tasklist .box {
  width: 18px; height: 18px; border-radius: 5px; border: 2px solid var(--line);
  flex: none; margin-top: 1px; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff; line-height: 1;
}
ul.tasklist li.done .box { background: var(--ok-fg); border-color: var(--ok-fg); }
ul.tasklist li.done .box::after { content: "\2713"; }
ul.tasklist li.done .label { text-decoration: line-through; color: var(--text-mute); }
ul.tasklist .label { flex: 1; }
ul.tasklist .owner-tag {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-mute);
  white-space: nowrap; padding-left: 8px; margin-top: 2px;
}

/* Графики динамики */
.chart-card { padding: 18px 20px 8px; }
.chart-wrap { position: relative; }
.chart-svg { width: 100%; height: auto; display: block; overflow: visible; }
.chart-svg .grid-line { stroke: var(--line); stroke-width: 1; }
.chart-svg .axis-label { fill: var(--text-mute); font-size: 11px; font-family: var(--font-sans); }
.chart-svg .chart-line { fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chart-svg .chart-area { opacity: .12; }
.chart-svg .peak-dot { stroke: var(--surface); stroke-width: 2; }
.chart-svg .peak-label { font-size: 12px; font-weight: 700; fill: var(--text); }
.chart-svg .hover-line { stroke: var(--text-mute); stroke-width: 1; stroke-dasharray: 2 3; opacity: 0; }
.chart-svg .hover-dot { opacity: 0; stroke: var(--surface); stroke-width: 2; }
.chart-tooltip {
  position: absolute; pointer-events: none; background: var(--surface);
  border: 1px solid var(--line); border-radius: 8px; padding: 6px 10px;
  font-size: 12px; box-shadow: var(--shadow); white-space: nowrap;
  transform: translate(-50%, -122%); opacity: 0; transition: opacity .1s;
}
.chart-tooltip .t-date { color: var(--text-mute); margin-right: 6px; }
.chart-tooltip .t-value { font-family: var(--font-mono); font-weight: 700; }
.chart-hit { fill: transparent; cursor: crosshair; }
.chart-table-toggle { font-size: 12.5px; margin: 4px 0 10px; }
.chart-table-toggle summary { cursor: pointer; color: var(--accent-2); font-weight: 600; }
.chart-table-toggle summary:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; }
.chart-table-toggle table { margin-top: 8px; font-size: 12.5px; }
.chart-table-toggle .table-wrap { max-height: 220px; overflow-y: auto; }

/* Сворачиваемые хвосты длинных списков */
details.list-more { margin-top: 2px; }
details.list-more > summary {
  cursor: pointer; color: var(--accent-2); font-weight: 600; font-size: 12.5px;
  list-style: none; padding: 8px 0 4px; user-select: none;
}
details.list-more > summary::-webkit-details-marker { display: none; }
details.list-more > summary::before { content: "▸ Показать ещё "; }
details.list-more[open] > summary::before { content: "▾ Свернуть "; }
details.list-more > summary .count { font-family: var(--font-mono); }
details.list-more > summary:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; }
details.list-more ul.tasklist, details.list-more ul.history { margin-top: 4px; }
details.list-more .task { margin-top: 8px; }
details.list-more[open] > summary::after { content: ""; }

/* Тема-тумблер */
button.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px; flex: none;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
  color: var(--text); cursor: pointer;
}
button.theme-toggle:hover { background: var(--surface-2); }
button.theme-toggle svg { width: 18px; height: 18px; }

/* Заголовки — кнопка "скопировать ссылку" */
h2 { scroll-margin-top: 132px; }
.heading-anchor {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; margin-left: 6px; border: none; background: none; padding: 0;
  color: var(--text-mute); cursor: pointer; border-radius: 4px; vertical-align: middle;
  opacity: 0; transition: opacity .12s; text-transform: none; letter-spacing: normal;
}
h2:hover .heading-anchor, .heading-anchor:focus-visible { opacity: 1; }
.heading-anchor svg { width: 13px; height: 13px; }
.heading-anchor.copied { color: var(--ok-fg); opacity: 1; }

/* Фильтр чек-листа */
.checklist-filter { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 12px; }
.checklist-filter input[type="search"] {
  flex: 1; min-width: 140px; font-family: inherit; font-size: 13px;
  padding: 7px 10px; border-radius: 8px; border: 1px solid var(--line);
  background: var(--bg); color: var(--text);
}
.checklist-filter select {
  font-family: inherit; font-size: 13px; padding: 7px 10px; border-radius: 8px;
  border: 1px solid var(--line); background: var(--bg); color: var(--text);
}
ul.tasklist li.filtered-out { display: none; }
.checklist-empty-filter {
  color: var(--text-mute); font-size: 13px; font-style: italic; padding: 4px 0 10px; display: none;
}

/* Бейдж открытых пунктов в навигации */
nav.topnav a .nav-badge {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  background: var(--crit-bg); color: var(--crit-fg); border-radius: 999px;
  padding: 1px 6px; line-height: 1.5;
}
nav.topnav a[aria-current="page"] .nav-badge { background: rgba(255,255,255,.28); color: #fff; }

/* Просроченные задачи (Срок прошёл, Статус ≠ Done) */
.overdue-mark {
  display: inline-block; margin-left: 6px; color: var(--crit-fg); font-weight: 700;
  cursor: help;
}
tr.overdue-row td:first-child { box-shadow: inset 3px 0 0 var(--crit-fg); }

/* Экспорт плана в календарь */
button.ics-export {
  display: inline-block; font-family: inherit; font-size: 12.5px; font-weight: 600; cursor: pointer;
  background: var(--surface); color: var(--text); border: 1px solid var(--line);
  border-radius: 8px; padding: 7px 12px; box-shadow: var(--shadow); margin: -4px 0 12px;
}
button.ics-export:hover { background: var(--surface-2); }

/* Подсказки-термины (сворачиваемые пояснения по ходу текста) */
.hint {
  position: relative; display: inline-flex; align-items: center;
  border-bottom: 1px dotted var(--text-mute); cursor: help; font-weight: 600;
}
.hint:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; border-radius: 3px; }
.hint .hint-bubble {
  position: absolute; bottom: calc(100% + 9px); left: 50%; transform: translateX(-50%);
  background: var(--text); color: var(--bg); font-size: 12.5px; font-weight: 400;
  line-height: 1.45; padding: 9px 11px; border-radius: 8px; box-shadow: var(--shadow);
  width: max-content; max-width: 270px; white-space: normal; text-align: left;
  opacity: 0; visibility: hidden; transition: opacity .12s;
  pointer-events: none; z-index: 30;
}
.hint:hover .hint-bubble, .hint:focus .hint-bubble { opacity: 1; visibility: visible; }

/* Раздел стоимости — оффер против рыночной оценки */
.price-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow); text-align: center;
  display: flex; flex-direction: column; justify-content: center;
}
.price-card .price-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-mute);
  font-weight: 600; min-height: 2.6em; display: flex; align-items: center; justify-content: center;
}
.price-card .price-value { font-family: var(--font-mono); font-size: 22px; margin-top: 8px; font-variant-numeric: tabular-nums; }
.price-card .price-sub { font-size: 11.5px; color: var(--text-mute); margin-top: 6px; }
.price-card.total .price-sub { color: rgba(255,255,255,.8); }
.price-card.total { background: var(--accent); }
.price-card.total .price-label, .price-card.total .price-value { color: #fff; }
.price-card.free .price-value { color: var(--ok-fg); }

/* Шапка сама уезжает вверх при скролле вниз (только на мобильном — см. медиа-запрос
   ниже, который обнуляет transform на широких экранах) и возвращается при скролле
   вверх. Класс переключает JS (initAutoHideHeader). */
.sticky-bar { transition: transform .25s ease; }
.sticky-bar.hide-on-scroll { transform: translateY(-100%); }

/* Плавающая кнопка «наверх» — появляется после прокрутки, JS (initBackToTop). */
button.back-to-top {
  position: fixed; right: 16px; bottom: 16px; z-index: 60;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none; box-shadow: var(--shadow);
  align-items: center; justify-content: center; cursor: pointer;
  display: none; opacity: 0; transition: opacity .15s;
}
button.back-to-top.visible { display: flex; opacity: 1; }
button.back-to-top svg { width: 20px; height: 20px; }
button.back-to-top:hover { background: var(--accent-2); }

/* Подсказки-термины по тапу (initHintTooltips) — дублирует :hover для тача,
   где наведения не существует. */
.hint.hint-open .hint-bubble { opacity: 1; visibility: visible; }

@media (max-width: 720px) {
  /* Навигация схлопывается в раскрывающееся меню */
  nav.topnav { padding: 6px 0; }
  nav.topnav .nav-label { display: none; }
  details.nav-menu > summary {
    display: flex; align-items: center; gap: 8px; cursor: pointer; list-style: none;
    font-size: 13.5px; font-weight: 700; color: var(--text);
    background: var(--surface); border: 1px solid var(--line); border-radius: 8px;
    padding: 10px 12px; box-shadow: var(--shadow);
  }
  details.nav-menu > summary::-webkit-details-marker { display: none; }
  details.nav-menu > summary::after {
    content: "▾"; margin-left: auto; color: var(--text-mute); transition: transform .15s;
  }
  details.nav-menu[open] > summary::after { transform: rotate(180deg); }
  details.nav-menu:not([open]) .nav-links { display: none; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 6px; margin-top: 8px; }
  .nav-links a { width: 100%; }

  /* PDF почти не открывают с телефона — убираем, чтобы освободить шапку */
  button.pdf { display: none; }

  /* На узких экранах авто-скрытие шапки при скролле реально работает —
     на широких экранах ниже это отключается. */
}
@media (min-width: 721px) {
  .sticky-bar.hide-on-scroll { transform: none; }
}

/* Таблицы, которым явно назначен класс responsive-cards, на мобильном
   становятся стопкой карточек «подпись: значение» вместо скролла вбок —
   применяется только к самым широким/плотным таблицам (см. HTML). */
@media (max-width: 720px) {
  .table-wrap.responsive-cards { overflow-x: visible; }
  .table-wrap.responsive-cards table,
  .table-wrap.responsive-cards tbody,
  .table-wrap.responsive-cards tr,
  .table-wrap.responsive-cards td { display: block; width: 100%; }
  .table-wrap.responsive-cards thead { display: none; }
  .table-wrap.responsive-cards tr {
    border: 1px solid var(--line); border-radius: 8px; padding: 10px 12px 6px; margin-bottom: 10px;
    background: var(--surface); box-shadow: var(--shadow);
  }
  .table-wrap.responsive-cards td {
    border-bottom: none; padding: 4px 0;
    display: flex; justify-content: space-between; align-items: baseline; gap: 12px; text-align: right;
  }
  .table-wrap.responsive-cards td::before {
    content: attr(data-label); font-weight: 600; color: var(--text-mute); text-align: left; flex: none;
  }
  .table-wrap.responsive-cards td:first-child {
    font-weight: 700; font-size: 14.5px; text-align: left; justify-content: flex-start;
  }
  .table-wrap.responsive-cards td:first-child::before { content: none; }
}

@media print {
  body { background: #fff; }
  .sticky-bar { position: static; }
  .actions, nav.topnav, .back-link, button.back-to-top { display: none; }
  .kpi, .card { box-shadow: none; border: 1px solid #ccc; }
  .two-col, .two-col-even { grid-template-columns: 1fr; }
  .board { grid-template-columns: repeat(2, 1fr); }
  .chart-tooltip { display: none; }
  .heading-anchor, .checklist-filter, .ics-export, .checklist-empty-filter { display: none; }
}
