.article-body > .office-checklist-section,
.article-body > .office-checklist-progress {
  scroll-margin-top: 96px;
}

.office-checklist-progress {
  margin: 30px 0;
  padding: 24px;
  border: 1px solid #b9d0ca;
  border-left: 5px solid var(--brand);
  border-radius: var(--radius);
  background: #f5faf8;
}

.office-checklist-progress-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
}

.office-checklist-progress-heading h2 {
  margin: 0 0 6px;
}

.office-checklist-progress-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.office-checklist-progress-meter strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.86rem;
}

.office-checklist-progress-meter progress {
  display: block;
  width: 100%;
  height: 14px;
  accent-color: var(--brand);
}

.office-checklist-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.office-checklist-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.office-checklist-filters button {
  min-height: 40px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.office-checklist-filters button[aria-pressed="true"] {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.office-checklist-filters button:focus-visible,
.office-checklist-actions button:focus-visible {
  outline: 3px solid #66a89f;
  outline-offset: 2px;
}

.office-checklist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.office-checklist-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.office-checklist-section {
  margin-top: 40px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.office-checklist-section > p {
  color: var(--muted);
}

.office-task-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 24px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.office-task-list li {
  min-width: 0;
}

.office-task-list label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 44px;
  padding: 9px 0;
  border-bottom: 1px solid #e6ebec;
  cursor: pointer;
  font-size: 0.92rem;
  line-height: 1.35;
}

.office-task-list input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  accent-color: var(--brand);
}

.office-task-list input:focus-visible {
  outline: 3px solid #66a89f;
  outline-offset: 2px;
}

.office-task-list input:checked + span {
  color: var(--muted);
  text-decoration: line-through;
}

.office-print-notes {
  display: none;
}

@media (max-width: 900px) {
  .office-checklist-progress-heading {
    grid-template-columns: 1fr;
  }

  .office-task-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .office-checklist-progress {
    padding: 18px;
  }

  .office-checklist-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .office-checklist-actions {
    flex-direction: column;
  }

  .office-checklist-actions button {
    width: 100%;
  }
}

@media print {
  @page { margin: 14mm; }

  .site-header,
  .site-footer,
  .page-hero .breadcrumbs,
  .toc,
  .side-panel,
  .office-checklist-controls,
  .office-checklist-progress-meter,
  #helpful-office-move-tools,
  #office-checklist-faq,
  .sources {
    display: none !important;
  }

  body {
    color: #111;
    background: #fff;
    font-size: 10pt;
  }

  .article-hero {
    padding: 0 0 12px;
  }

  .section {
    padding: 0;
  }

  .article-layout {
    display: block;
  }

  .office-checklist-section {
    break-inside: avoid;
    margin-top: 18px;
    padding-bottom: 12px;
  }

  .office-task-list {
    grid-template-columns: 1fr 1fr;
  }

  .office-task-list label {
    min-height: 0;
    padding: 5px 0;
  }

  .office-task-list input {
    appearance: none;
    width: 12px;
    height: 12px;
    border: 1px solid #111;
    background: #fff;
  }

  .office-print-notes {
    display: block;
    break-before: page;
  }

  .office-print-notes div {
    height: 26px;
    border-bottom: 1px solid #777;
  }

  a {
    color: #111;
    text-decoration: none;
  }
}
