/* ---- 16l. Printable document / PDF -------------------------------------- */

.doc {
  display: grid;
  gap: 1rem;
}

.doc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.doc-sheet {
  padding: 2rem 2.5rem;
  border: 1px solid var(--ta-border);
  border-radius: var(--ta-r);
  background: var(--ta-surface);
  box-shadow: var(--ta-shadow);
  max-width: 52rem;
}

.doc-sheet h1,
.doc-sheet h2,
.doc-sheet h3 {
  letter-spacing: -0.015em;
}

.doc-sheet p {
  line-height: 1.6;
}

/* When printing a document, hide the toolbar and chrome, keep the sheet. */
@media print {
  .doc-toolbar {
    display: none;
  }

  .doc-sheet {
    box-shadow: none;
    border: none;
  }

  body {
    background: #fff;
  }
}

