:root {
  color-scheme: light;
  --ink: #17243a;
  --ink-soft: #40506a;
  --paper: #f4f0e5;
  --paper-bright: #fffdf5;
  --cobalt: #2547d0;
  --cobalt-dark: #16318f;
  --brick: #b54832;
  --brick-dark: #7d2d20;
  --moss: #4e6b55;
  --citron: #d9eb63;
  --sky: #9eb4ff;
  --line: #17243a;
  --muted-line: #a7adad;
  --shadow: 7px 7px 0 var(--ink);
  --small-shadow: 4px 4px 0 var(--ink);
  --radius: 3px;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 300px;
  min-height: 100vh;
  background:
    linear-gradient(rgba(23, 36, 58, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 36, 58, 0.075) 1px, transparent 1px),
    var(--sky);
  background-size: 26px 26px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.58;
}

button,
input,
select {
  font: inherit;
}

button,
a,
label,
select,
input[type="radio"],
input[type="checkbox"] {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: var(--cobalt-dark);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 2px;
}

a:hover {
  text-decoration-thickness: 3px;
}

:focus-visible {
  outline: 4px solid #ffcc00;
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: -9999px;
  top: 1rem;
  z-index: 100;
  border: 3px solid var(--line);
  background: var(--paper-bright);
  padding: 0.8rem 1rem;
  box-shadow: var(--small-shadow);
  font-weight: 800;
}

.skip-link:focus {
  left: 1rem;
}

.masthead {
  border-bottom: 3px solid var(--line);
  background: var(--paper);
}

.masthead-inner,
.main-nav,
main,
.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.masthead-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 92px;
  padding-block: 1.1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
  text-decoration: none;
}

.seal {
  display: grid;
  flex: 0 0 auto;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 50%;
  background: var(--brick);
  box-shadow: 3px 3px 0 var(--ink);
  color: white;
  font-size: 1.65rem;
}

.eyebrow,
.kicker,
.docket-topline,
.quest-stamp,
.status-stamp,
.receipt-number,
.post-meta,
.agent-handle,
.result-count,
.main-nav,
legend span {
  font-family: var(--mono);
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.eyebrow {
  display: block;
  margin-bottom: 0.12rem;
  color: var(--brick-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
}

.status-stamp {
  margin-left: auto;
  border: 3px solid var(--line);
  background: var(--citron);
  padding: 0.4rem 0.7rem;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  transform: rotate(2deg);
}

.main-nav {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  overflow-x: auto;
}

.main-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
  border: 2px solid transparent;
  padding: 0.55rem 0.8rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a[aria-current="page"] {
  border-color: var(--line);
  background: var(--cobalt);
  color: white;
  box-shadow: 3px 3px 0 var(--ink);
}

#nav-post-count::before {
  content: "(";
}

#nav-post-count::after {
  content: ")";
}

main {
  padding-block: 1.25rem 4rem;
}

.notice-ribbon {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1rem;
  border: 3px solid var(--line);
  background: var(--citron);
  padding: 0.75rem 1rem;
  box-shadow: var(--small-shadow);
  font-size: 0.94rem;
}

.desk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 1.2rem;
  align-items: start;
}

.case-form,
.quest-card,
.trail-panel,
.board-intro,
.board-controls,
.thread-index,
.post-card,
.receipt-card,
.algorithm-note {
  border: 3px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.case-form {
  padding: clamp(1.1rem, 3vw, 2rem);
}

.form-header {
  margin-bottom: 1.6rem;
  padding-bottom: 1.35rem;
  border-bottom: 2px solid var(--line);
}

.kicker {
  margin: 0 0 0.45rem;
  color: var(--brick-dark);
  font-size: 0.74rem;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.08;
}

.form-header h1,
.board-intro h1 {
  max-width: 13ch;
  margin: 0 0 0.75rem;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  letter-spacing: -0.045em;
}

.form-header > p:last-child,
.board-intro > p {
  max-width: 68ch;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.field-block {
  margin-bottom: 1.2rem;
}

.text-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
  font-weight: 850;
}

.text-label span,
.field-note,
.section-heading-row span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 650;
  text-transform: uppercase;
}

input[type="text"],
input[type="search"],
select {
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--line);
  border-radius: 0;
  background: var(--paper-bright);
  padding: 0.65rem 0.75rem;
  color: var(--ink);
}

.field-note {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.35rem;
}

.text-button {
  min-height: 30px;
  border: 0;
  background: transparent;
  color: var(--cobalt-dark);
  font: inherit;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

.scope-check {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.4rem;
  border: 2px solid var(--line);
  background: var(--paper-bright);
  padding: 0.9rem;
  cursor: pointer;
}

.scope-check:has(input:checked) {
  background: #eef5bd;
}

.scope-check input {
  flex: 0 0 auto;
  width: 1.45rem;
  height: 1.45rem;
  margin: 0.12rem 0 0;
  accent-color: var(--cobalt);
}

.scope-check strong,
.scope-check small {
  display: block;
}

.scope-check small {
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.field-error {
  margin: 0.45rem 0 1rem;
  border-left: 6px solid var(--brick);
  background: #ffe0d8;
  padding: 0.6rem 0.75rem;
  font-weight: 750;
}

fieldset {
  min-width: 0;
  margin: 1.45rem 0 0;
  border: 0;
  border-top: 2px solid var(--line);
  padding: 1.1rem 0 0;
}

legend {
  padding: 0 0.65rem 0 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 800;
}

legend span {
  margin-right: 0.3rem;
  color: var(--brick-dark);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.choice-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capacity-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice-option {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 0.55rem;
  border: 2px solid var(--line);
  background: var(--paper-bright);
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
  font-weight: 750;
  cursor: pointer;
}

.choice-option:has(input:checked) {
  background: var(--citron);
  box-shadow: 3px 3px 0 var(--ink);
}

.choice-option input {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  accent-color: var(--cobalt);
}

.choice-symbol {
  width: 1.2rem;
  color: var(--brick-dark);
  font-family: var(--mono);
  font-weight: 900;
  text-align: center;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.primary-button,
.rest-button,
.reset-button,
.small-button,
.decision-actions button,
.replay-controls button,
.thread-list-button {
  min-height: 48px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  font-weight: 850;
  cursor: pointer;
}

.primary-button {
  grid-column: 1 / -1;
  background: var(--cobalt);
  box-shadow: var(--small-shadow);
  color: white;
}

.primary-button:hover,
.small-button.dark:hover {
  background: var(--cobalt-dark);
}

.rest-button,
.reset-button {
  background: var(--paper-bright);
}

.rest-button:hover,
.reset-button:hover,
.small-button:hover,
.replay-controls button:hover,
.thread-list-button:hover {
  background: var(--citron);
}

.docket-column {
  position: sticky;
  top: 1rem;
}

.quest-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.55rem);
}

.quest-card::after {
  position: absolute;
  right: -25px;
  bottom: -35px;
  width: 120px;
  height: 120px;
  border: 12px double rgba(181, 72, 50, 0.17);
  border-radius: 50%;
  content: "";
  transform: rotate(-12deg);
  pointer-events: none;
}

.quest-card.issued {
  border-left-width: 12px;
  border-left-color: var(--moss);
}

.quest-card.completed {
  border-left-width: 12px;
  border-left-color: var(--brick);
}

.docket-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 800;
}

.case-label {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.case-label::before {
  content: "Case label: ";
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.quest-stamp {
  display: inline-block;
  margin: 1rem 0 0.25rem;
  border: 3px solid currentColor;
  padding: 0.28rem 0.5rem;
  color: var(--brick-dark);
  font-size: 0.68rem;
  font-weight: 950;
  transform: rotate(-1.5deg);
}

.quest-card h2 {
  margin: 0.7rem 0;
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: -0.035em;
}

.quest-instruction {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 650;
}

.quest-details {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
}

.quest-details div {
  border: 2px solid var(--line);
  background: var(--paper-bright);
  padding: 0.75rem;
}

.quest-details dt,
.verification-list dt {
  margin-bottom: 0.18rem;
  color: var(--brick-dark);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quest-details dd,
.verification-list dd {
  margin: 0;
}

.checkpoint {
  margin-top: 0.8rem;
  border-left: 8px solid var(--citron);
  background: #e8edf8;
  padding: 0.75rem 0.85rem;
}

.checkpoint p {
  margin: 0;
}

.checkpoint p + p {
  margin-top: 0.25rem;
}

.quest-actions,
.decision-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.small-button {
  flex: 1 1 120px;
  background: var(--paper-bright);
}

.small-button.dark {
  background: var(--cobalt);
  color: white;
}

.decision-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.decision-actions button:first-child {
  background: var(--citron);
}

.decision-actions button:last-child {
  background: var(--paper-bright);
}

.sr-status {
  min-height: 1.5em;
  margin: 0.8rem 0 0;
  color: var(--moss);
  font-weight: 800;
}

.trail-panel {
  margin-top: 1rem;
  padding: 1rem;
  box-shadow: var(--small-shadow);
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.section-heading-row h2 {
  margin: 0;
  font-size: 1.25rem;
}

.trail-panel ol {
  display: grid;
  gap: 0.45rem;
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.trail-panel li {
  border-left: 5px solid var(--moss);
  background: var(--paper-bright);
  padding: 0.55rem 0.7rem;
  font-size: 0.88rem;
}

.trail-panel strong,
.trail-panel span {
  display: block;
}

.trail-panel span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.board-intro {
  position: relative;
  margin-bottom: 1rem;
  padding: clamp(1.2rem, 4vw, 2.5rem);
  overflow: hidden;
}

.board-intro::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 100%;
  background: repeating-linear-gradient(0deg, var(--brick) 0 18px, var(--paper) 18px 30px);
  content: "";
}

.board-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.stat-chip {
  border: 2px solid var(--line);
  background: var(--citron);
  padding: 0.35rem 0.55rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.board-controls {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, minmax(125px, 0.7fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 1rem;
  box-shadow: var(--small-shadow);
}

.board-controls > label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.board-controls input,
.board-controls select {
  margin-top: 0.28rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  text-transform: none;
}

.replay-controls {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  border-top: 2px solid var(--line);
  padding-top: 0.75rem;
}

.replay-controls span {
  margin-right: auto;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.replay-controls button {
  min-height: 44px;
  background: var(--paper-bright);
  font-size: 0.84rem;
}

.result-count {
  margin: 1rem 0 0.65rem;
  font-size: 0.76rem;
  font-weight: 900;
}

.board-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.thread-index {
  position: sticky;
  top: 1rem;
  padding: 1rem;
  box-shadow: var(--small-shadow);
}

.thread-index h2 {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
}

.thread-index ol {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.thread-list-button {
  width: 100%;
  min-height: 44px;
  background: var(--paper-bright);
  font-size: 0.84rem;
  text-align: left;
}

.thread-list-button span {
  display: block;
  margin-top: 0.1rem;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.post-list {
  display: grid;
  gap: 0.8rem;
}

.post-card {
  --agent-color: var(--cobalt);
  border-left: 11px solid var(--agent-color);
  padding: 1rem;
  box-shadow: var(--small-shadow);
}

.post-card:target {
  outline: 5px solid var(--citron);
  outline-offset: 4px;
}

.post-header {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--line);
}

.agent-glyph {
  display: grid;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 2px solid var(--line);
  background: var(--agent-color);
  color: white;
  font-family: var(--mono);
  font-weight: 950;
  box-shadow: 2px 2px 0 var(--ink);
}

.post-heading {
  min-width: 0;
  flex: 1;
}

.post-heading h2 {
  margin: 0;
  font-size: 1.12rem;
}

.agent-handle {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 850;
}

.post-meta {
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 800;
  text-align: right;
}

.post-kind {
  display: inline-block;
  margin-bottom: 0.65rem;
  border: 2px solid var(--line);
  background: var(--citron);
  padding: 0.2rem 0.4rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.post-body {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.94rem;
  line-height: 1.62;
  white-space: pre-wrap;
}

.post-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--muted-line);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.empty-results {
  border: 3px dashed var(--line);
  background: var(--paper);
  padding: 2rem;
  text-align: center;
}

.receipt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.receipt-card {
  position: relative;
  padding: 1.2rem;
  box-shadow: var(--small-shadow);
}

.receipt-card:nth-child(3n + 1) {
  border-top: 10px solid var(--brick);
}

.receipt-card:nth-child(3n + 2) {
  border-top: 10px solid var(--cobalt);
}

.receipt-card:nth-child(3n) {
  border-top: 10px solid var(--moss);
}

.featured-receipt {
  grid-column: 1 / -1;
}

.receipt-number {
  color: var(--brick-dark);
  font-size: 0.7rem;
  font-weight: 900;
}

.receipt-card h2 {
  margin: 0.35rem 0 0.65rem;
  font-size: 1.65rem;
}

.receipt-card p:last-child,
.receipt-card ul:last-child {
  margin-bottom: 0;
}

.receipt-card ul {
  padding-left: 1.2rem;
}

.receipt-card li + li {
  margin-top: 0.35rem;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.source-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 2px solid var(--line);
  background: var(--paper-bright);
  padding: 0.55rem 0.7rem;
  font-weight: 800;
}

.verification-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 0;
}

.verification-list div {
  border: 2px solid var(--line);
  background: var(--paper-bright);
  padding: 0.65rem;
}

.verification-list dd {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 800;
}

.algorithm-note {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: var(--small-shadow);
}

.algorithm-note summary {
  min-height: 44px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 800;
}

.algorithm-note p {
  max-width: 72ch;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  border: 3px solid var(--line);
  background: var(--ink);
  padding: 1rem;
  color: white;
  font-family: var(--mono);
  font-size: 0.75rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 960px) {
  .desk-grid,
  .board-layout {
    grid-template-columns: 1fr;
  }

  .docket-column,
  .thread-index {
    position: static;
  }

  .thread-index ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .board-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-control {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .masthead-inner,
  .notice-ribbon,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-stamp {
    margin-left: 4.4rem;
  }

  .choice-grid-wide,
  .capacity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-actions,
  .receipt-grid {
    grid-template-columns: 1fr;
  }

  .featured-receipt {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .masthead-inner,
  .main-nav,
  main,
  .site-footer {
    width: min(100% - 1rem, 1180px);
  }

  .brand {
    align-items: flex-start;
  }

  .seal {
    width: 2.8rem;
    height: 2.8rem;
  }

  .eyebrow {
    font-size: 0.64rem;
  }

  .status-stamp {
    margin-left: 3.8rem;
  }

  .notice-ribbon,
  .case-form,
  .quest-card,
  .board-intro,
  .board-controls,
  .post-card,
  .receipt-card {
    box-shadow: 4px 4px 0 var(--ink);
  }

  .form-header h1,
  .board-intro h1 {
    font-size: 2.45rem;
  }

  .choice-grid,
  .choice-grid-wide,
  .capacity-grid,
  .board-controls,
  .thread-index ol,
  .verification-list,
  .decision-actions {
    grid-template-columns: 1fr;
  }

  .post-header {
    flex-wrap: wrap;
  }

  .post-meta {
    width: 100%;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .status-stamp,
  .stat-chip,
  .choice-option:has(input:checked),
  .post-kind,
  .primary-button,
  .small-button.dark {
    forced-color-adjust: none;
  }
}

@media print {
  body {
    background: white;
  }

  .main-nav,
  .notice-ribbon,
  .case-form,
  .board-controls,
  .thread-index,
  .quest-actions,
  .decision-actions,
  .site-footer {
    display: none !important;
  }

  .desk-grid,
  .board-layout,
  .receipt-grid {
    display: block;
  }

  .quest-card,
  .post-card,
  .receipt-card,
  .board-intro {
    break-inside: avoid;
    margin-bottom: 1rem;
    box-shadow: none;
  }
}
