/* The trustee checklist. A long, printable document rather than a marketing
   page: one question per block, each with the answer that should reassure a
   board and the answer that should not. Loaded alongside tokens.css and
   site.css, so only the document-specific parts live here. */

.check-intro {
  border-left: 3px solid var(--amber);
  padding: var(--space-1) 0 var(--space-1) var(--space-6);
  max-width: 62ch;
}
.check-intro p:last-child { margin-bottom: 0; }
.check-intro__lead { font-weight: var(--fw-semibold); color: var(--amber-text); }

/* Section 5 opens on navy, the one dark band in the document. */
.check-intro--dark {
  border-left: 0;
  background: var(--navy);
  color: var(--on-dark-muted);
  border-radius: var(--radius);
  padding: var(--space-8);
  max-width: none;
}
.check-intro--dark p { color: var(--on-dark-muted); }
.check-intro--dark .check-intro__lead { color: var(--amber); }

.check-list {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-8);
}

.check-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border);
}
.check-item:last-child { border-bottom: 1px solid var(--border); }

/* A box to tick on paper. Decorative: the question text carries the meaning. */
.check-item__box {
  width: 20px;
  height: 20px;
  margin-top: 5px;
  border: 1.5px solid var(--navy);
  border-radius: 4px;
}

.check-item h3 {
  margin: 0 0 var(--space-4);
  font-size: 19px;
  line-height: var(--lh-tight);
}

.check-label {
  margin: 0 0 var(--space-1);
  font-size: 11.5px;
  font-weight: var(--fw-bold);
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

.check-answer { margin: 0; color: var(--muted-foreground); font-size: 15px; line-height: 1.65; }

.check-concern {
  margin-top: var(--space-4);
  padding-left: var(--space-4);
  border-left: 2px solid var(--amber);
}
.check-concern .check-label { color: var(--amber-text); }

/* An aside from Brian under a question, not part of the question itself. */
.check-aside {
  margin: var(--space-4) 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--warm-gray);
}

.check-next { display: flex; flex-direction: column; }
.check-next > div {
  padding: var(--space-5) 0;
  border-top: 1px solid var(--border);
}
.check-next h3 { margin: 0 0 var(--space-2); font-size: 17px; }
.check-next p { margin: 0; }

.check-author {
  display: grid;
  gap: var(--space-6);
  align-items: start;
  border-top: 3px solid var(--navy);
  padding-top: var(--space-6);
}
@media (min-width: 640px) {
  .check-author { grid-template-columns: 120px minmax(0, 1fr); }
}
.check-author img { width: 120px; height: 120px; border-radius: var(--radius-full); object-fit: cover; display: block; }

@media print {
  .nav, .footer, .breadcrumbs, .skip-link, .check-cta { display: none; }
  .check-item { break-inside: avoid; }
  .section { padding-block: 16px; }
}
