/* ============================================================================
   cover.css — the front page, drawn with the tokens the host provides
   ============================================================================
   DECLARES NO COLOURS OF ITS OWN. Every value here is a var() the apps in this
   family already define — --accent, --text-bright, --text-dim, --border-lt —
   so the same cover comes out in a bank's red on one host and another house's
   blue on the other without a line of it knowing which. Adding a literal hex to
   this file would quietly break that.

   It sizes to the page it is put on rather than to a page of its own: the
   document that uses it owns the sheet, the margins and the @page, and a cover
   that set its own would fight whichever app it landed in.
   ========================================================================= */

.doc-cover{
  display:flex;
  flex-direction:column;
  min-height:100%;
  box-sizing:border-box;
}

.doc-cover .dc-top{
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--text-dim);
  text-align:right;
}

/* The body takes the middle by taking the space, which is what keeps the mark
   optically centred whether the title runs to one line or three. */
.doc-cover .dc-body{margin-top:auto;margin-bottom:auto}

.doc-cover .dc-mark{
  font-size:54px;
  font-weight:700;
  letter-spacing:-.02em;
  color:var(--text-bright);
  line-height:1;
}
/* A raised letter in a mark, not a footnote reference: the browser's own <sup>
   sits too high and too large, and its line-height pushes the block open. */
.doc-cover .dc-mark sup{
  font-size:.5em;
  line-height:0;
  vertical-align:.7em;
  letter-spacing:0;
  font-weight:600;
}

.doc-cover .dc-rule{
  height:2px;
  background:var(--accent);
  margin:18px 0 20px;
  max-width:560px;
}

.doc-cover .dc-title{
  margin:0;
  font-size:22px;
  font-weight:600;
  letter-spacing:-.01em;
  color:var(--text);
}
.doc-cover .dc-sub{
  margin:6px 0 0;
  font-size:13px;
  color:var(--text-dim);
}

.doc-cover .dc-foot{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  border-top:1px solid var(--border-lt);
  padding-top:10px;
  font-size:11px;
  color:var(--text-dim);
}
.doc-cover .dc-note{text-align:right;max-width:60%}
