/* ===================================================================
   Book 3 — Who Made This? · Page-specific layout
   =================================================================== */

/* ---------- P1 Cover (full-bleed) ---------- */
.b3-cover { padding: 0; }
.b3-cover .cover-overlay {
  background:
    linear-gradient(180deg,
      rgba(255,248,240,0.95) 0%,
      rgba(255,248,240,0.45) 22%,
      rgba(255,248,240,0) 36%,
      rgba(255,248,240,0) 56%,
      rgba(255,248,240,0.55) 76%,
      rgba(255,248,240,0.98) 100%);
}
.b3-cover .cover-head {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.b3-cover .cover-brand { display: flex; gap: 10px; align-items: center; }
.b3-cover .cover-brand-mark {
  width: 42px; height: 42px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--font-body); font-weight: 800; font-size: 14pt;
  letter-spacing: 0.06em; border-radius: 2px;
}
.b3-cover .cover-brand-name {
  font-family: var(--font-body); font-weight: 800; font-size: 11pt;
  letter-spacing: 0.24em; color: var(--ink);
}
.b3-cover .cover-tag {
  font-family: var(--font-display); font-style: italic;
  font-size: 11pt; color: var(--ink-soft);
  max-width: 42%; text-align: right;
}
.b3-cover-title-block { padding-bottom: 12px; }
.b3-cover-kicker {
  font-family: var(--font-body); font-weight: 700;
  font-size: 10pt; letter-spacing: 0.2em;
  color: var(--p-media); margin-bottom: 8px;
}
.b3-cover-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 96pt; line-height: 0.88;
  letter-spacing: -0.03em; margin: 0;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255,248,240,0.7);
}
.b3-cover-sub {
  margin-top: 18px;
  font-family: var(--font-display); font-style: italic;
  font-size: 14pt; color: var(--ink); max-width: 80%;
  line-height: 1.4;
}

/* ---------- P2 Intro (matches book1/2 intro-page) ---------- */
.intro-page .page-title { font-size: 26pt; }
.intro-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 14px;
}
.intro-col h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 14pt;
  margin: 16px 0 6px 0; color: var(--p-media);
}
.intro-col h3:first-child { margin-top: 0; }
.intro-col p, .intro-col ol {
  font-family: var(--font-body); font-size: 10pt; line-height: 1.5; margin: 0 0 8px 0;
}
.intro-col ol { padding-left: 18px; }
.intro-col ol li { margin-bottom: 4px; }
.intro-col em { font-family: var(--font-display); font-style: italic; }

/* ---------- P3 Three questions stack ---------- */
.p3-questions-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 14px 0 8px;
  flex: 1 1 auto;
}
.qcard {
  display: grid;
  grid-template-columns: 1.2in 1fr;
  gap: 16px;
  align-items: stretch;
  padding: 14px 18px;
  background: var(--paper);
  border: 2px solid var(--p-media);
  border-radius: 8px;
}
.qcard-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56pt;
  color: var(--p-media);
  line-height: 1;
  letter-spacing: -0.02em;
  border-right: 2px solid var(--p-media);
  display: flex; align-items: center; justify-content: center;
}
.qcard-body { display: flex; flex-direction: column; gap: 6px; }
.qcard-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20pt;
  color: var(--ink);
  line-height: 1.1;
}
.qcard-hint {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11pt;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.qcard-lines { display: flex; flex-direction: column; gap: 8px; }
.qcard-lines .writeline { height: 24px; }

/* ---------- P4 Sycophant rating ---------- */
.rate-key {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 9pt; color: var(--ink-mute);
  margin-left: 8px;
  font-style: normal;
}
.rk-pill {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  border: 1.5px solid var(--p-media);
  border-radius: 999px;
  font-weight: 700; color: var(--p-media);
  font-size: 9pt;
}
.p4-quotes--sycophant { display: flex; flex-direction: column; gap: 12px; margin: 14px 0 8px; flex: 1 1 auto; }
.syc-row {
  display: grid;
  grid-template-columns: 1fr 2.6in;
  gap: 18px;
  align-items: center;
  padding: 12px 16px;
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  background: var(--paper);
}
.syc-text {
  font-family: var(--font-display);
  font-size: 13pt;
  line-height: 1.35;
  color: var(--ink);
}
.syc-scale {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.syc-scale span {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11pt;
  text-align: center;
  padding: 6px 0;
  border: 1.5px solid var(--ink-faint);
  border-radius: 4px;
  color: var(--ink-mute);
}

/* ---------- P5 Hallucination hunt table ---------- */
.p5-table {
  display: flex;
  flex-direction: column;
  margin: 12px 0 8px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
}
.hh-row {
  display: grid;
  grid-template-columns: 1fr 0.95in 0.95in 1.7in;
  align-items: center;
  border-top: 1px solid var(--ink-faint);
}
.hh-row:first-child { border-top: none; }
.hh-row > div {
  padding: 11px 12px;
  font-family: var(--font-body);
  font-size: 10pt;
  color: var(--ink);
  border-right: 1px solid var(--ink-faint);
  display: flex; align-items: center; justify-content: center;
}
.hh-row > div:last-child { border-right: none; }
.hh-row--head {
  background: color-mix(in srgb, var(--p-media) 18%, var(--paper));
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 9.5pt;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p-media);
}
.hh-row--head > div { padding: 12px 10px; }
.hh-row--head > div:first-child { justify-content: flex-start; }
.hh-row .hh-claim {
  justify-content: flex-start;
  font-family: var(--font-display);
  font-size: 11.5pt;
}
.hh-row .writeline { width: 100%; height: 20px; }

/* ---------- P6 Friend test table ---------- */
.p6-friendtable {
  display: flex; flex-direction: column;
  margin: 12px 0 8px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
}
.ft-row {
  display: grid;
  grid-template-columns: 1fr 1.6in 1.6in;
  align-items: center;
  border-top: 1px solid var(--ink-faint);
}
.ft-row:first-child { border-top: none; }
.ft-row > div {
  padding: 11px 14px;
  font-family: var(--font-display);
  font-size: 11.5pt;
  color: var(--ink);
  border-right: 1px solid var(--ink-faint);
  display: flex; align-items: center; justify-content: center;
}
.ft-row > div:first-child { justify-content: flex-start; }
.ft-row > div:last-child { border-right: none; }
.ft-row--head {
  background: color-mix(in srgb, var(--p-empathy) 18%, var(--paper));
  font-family: var(--font-body); font-weight: 800; font-size: 9.5pt;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--p-empathy);
}

/* ---------- P7 Real people list + grounding strip ---------- */
.p7-rows { display: flex; flex-direction: column; gap: 10px; margin: 14px 0 14px; }
.rp-row {
  display: grid;
  grid-template-columns: 0.5in 1fr;
  gap: 16px;
  align-items: center;
  padding: 8px 14px;
  border: 1.5px solid var(--p-community);
  border-radius: 6px;
  background: color-mix(in srgb, var(--p-community) 4%, var(--paper));
}
.rp-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24pt;
  color: var(--p-community);
  line-height: 1;
  text-align: center;
}
.rp-fields {
  display: grid;
  grid-template-columns: 2.0in 1fr;
  gap: 14px;
  align-items: center;
}
.rp-field { display: flex; flex-direction: column; gap: 2px; }
.rp-label {
  font-family: var(--font-body); font-weight: 700;
  font-size: 8.5pt; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--p-community);
}

.p7-grounding {
  margin-top: auto;
  padding: 8px 0;
  display: flex; justify-content: center;
}
.p7-grounding img {
  height: 1.6in; width: auto; max-width: 100%;
}

/* ---------- P8 Algorithm metaphor ---------- */
.p8-metaphor {
  display: grid;
  grid-template-columns: 1fr 2.0in;
  gap: 18px;
  margin: 12px 0;
  align-items: end;
  padding: 14px 18px;
  background: color-mix(in srgb, var(--p-civic) 12%, var(--paper));
  border: 2px solid var(--p-civic);
  border-radius: 10px;
}
.p8-meta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16pt;
  color: var(--ink);
  margin-bottom: 6px;
}
.p8-meta-text p {
  font-family: var(--font-body);
  font-size: 10.5pt;
  line-height: 1.5;
  margin: 0 0 6px 0;
  color: var(--ink);
}
.p8-meta-text p em { font-family: var(--font-display); font-style: italic; }
.p8-meta-art { display: flex; align-items: flex-end; justify-content: center; }
.p8-meta-art img { height: 2.0in; width: auto; }

.p8-writeup {
  margin-top: 10px;
  display: flex; flex-direction: column; gap: 10px;
}
.writeup-row {
  display: flex; flex-direction: column; gap: 6px;
}
.writeup-label {
  font-family: var(--font-body); font-weight: 700;
  font-size: 10pt; letter-spacing: 0.04em; color: var(--p-digital);
}
.writeup-label em { font-style: italic; }
.writeup-row .writeline { height: 24px; }
.bullet-lines { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.bullet-lines li { display: flex; align-items: center; gap: 8px; }
.bullet-lines li::before {
  content: "·"; font-weight: 700; color: var(--p-digital); font-size: 16pt;
}
.bullet-lines li .writeline { flex: 1; height: 22px; }

/* ---------- P9 Bubble + outside ---------- */
.p9-bubble {
  position: relative;
  margin: 14px 0 6px;
  flex: 1 1 auto;
  min-height: 5in;
}
.p9-circle {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 3.6in; height: 3.6in;
  border: 3px solid var(--p-digital);
  background: color-mix(in srgb, var(--p-digital) 8%, var(--paper));
  border-radius: 999px;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.p9-circle-label {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 10pt;
  color: var(--p-digital);
  text-align: center;
}
.p9-circle-label span {
  display: block;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  letter-spacing: 0; font-size: 9.5pt; color: var(--ink-soft);
  margin-top: 2px;
}
.p9-circle-lines { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.p9-circle-lines .writeline { height: 20px; }

.p9-outside-label {
  position: absolute;
  width: 1.7in;
  background: var(--paper);
  border: 1.5px dashed var(--ink-faint);
  border-radius: 6px;
  padding: 8px 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 9pt;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  z-index: 1;
}
.p9-outside-label span {
  display: block;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 10pt; letter-spacing: 0;
  color: var(--ink); margin: 2px 0 4px;
}
.p9-outside-label .writeline { height: 18px; }
.p9-outside-label--tl { left: 0;     top: 0.1in; }
.p9-outside-label--tr { right: 0;    top: 0.1in; }
.p9-outside-label--bl { left: 0;     bottom: 0.1in; }
.p9-outside-label--br { right: 0;    bottom: 0.1in; }

/* ---------- P10 Data trail table ---------- */
.p10-table {
  margin: 14px 0 8px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.dt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink-faint);
}
.dt-row:first-child { border-top: none; }
.dt-row > div {
  padding: 16px 14px;
  border-right: 1px solid var(--ink-faint);
}
.dt-row > div:last-child { border-right: none; }
.dt-row--head {
  background: color-mix(in srgb, var(--p-digital) 18%, var(--paper));
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 10.5pt;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--p-digital);
}
.dt-row--head em { font-style: italic; font-family: var(--font-display); text-transform: none; }
.dt-row .writeline { height: 22px; }

/* ---------- P11 Pause Check Ask ---------- */
.p11-buttons {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; margin: 14px 0 14px;
}
.p11-btn {
  font-family: var(--font-body); font-weight: 800;
  font-size: 22pt; letter-spacing: 0.08em;
  padding: 14px 12px; text-align: center;
  border: 2.5px solid var(--ink); border-radius: 6px;
  color: var(--paper); box-shadow: 4px 4px 0 0 var(--ink);
  line-height: 1;
}
.p11-btn span {
  display: block; font-family: var(--font-display); font-style: italic;
  font-weight: 400; font-size: 10pt; letter-spacing: 0; margin-top: 6px;
  color: var(--paper); opacity: 0.95;
}
.p11-btn--pause { background: var(--p-digital); }
.p11-btn--check { background: var(--p-civic); }
.p11-btn--ask   { background: var(--p-empathy); }

.p11-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 12px; margin-bottom: 10px;
  flex: 1 1 auto;
}
.p11-prompt-card {
  background: var(--paper); border: 1.5px solid var(--ink);
  border-radius: 6px; padding: 12px 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.p11-prompt-eyebrow {
  font-family: var(--font-body); font-weight: 800;
  font-size: 10pt; letter-spacing: 0.16em;
}
.p11-prompt-eyebrow--pause { color: var(--p-digital); }
.p11-prompt-eyebrow--check { color: #8C6A1F; }
.p11-prompt-eyebrow--ask   { color: var(--p-empathy); }
.p11-prompt-q {
  font-family: var(--font-display); font-size: 11pt; color: var(--ink); line-height: 1.35;
}
.p11-prompt-card .writebox { flex: 1; min-height: 1.0in; }

/* ---------- P12 Support flow ---------- */
.p12-flow {
  display: flex; flex-direction: column; gap: 10px;
  margin: 14px 0 8px;
  flex: 1 1 auto;
}
.flow-step {
  display: grid;
  grid-template-columns: 0.5in 0.4in 1fr;
  align-items: start;
  gap: 12px;
  padding: 12px 16px;
  background: color-mix(in srgb, var(--p-body) 8%, var(--paper));
  border: 1.5px solid var(--p-body);
  border-left: 6px solid var(--p-body);
  border-radius: 6px;
}
.flow-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 28pt; color: var(--p-body); line-height: 1;
  text-align: center;
}
.flow-arrow {
  font-family: var(--font-display); font-weight: 700;
  color: var(--p-body); font-size: 22pt; text-align: center;
  line-height: 1.4;
}
.flow-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14pt; color: var(--ink); margin-bottom: 2px;
}
.flow-detail {
  font-family: var(--font-body); font-size: 10pt; line-height: 1.4; color: var(--ink);
}
.flow-detail em { font-family: var(--font-display); font-style: italic; }

/* ---------- P13 AI Honesty Label ---------- */
.label-frame {
  margin: 14px 0 8px;
  background: var(--paper);
  border: 3px solid var(--p-civic);
  border-radius: 6px;
  padding: 0;
  flex: 1 1 auto;
  display: flex; flex-direction: column;
}
.label-head {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--p-civic); color: var(--ink);
  padding: 12px 18px;
}
.label-stamp {
  font-family: var(--font-body); font-weight: 800;
  font-size: 18pt; letter-spacing: 0.18em;
  color: var(--ink);
}
.label-mock {
  font-family: var(--font-body); font-weight: 600;
  font-size: 10pt; color: var(--ink);
}
.label-rows { flex: 1; display: flex; flex-direction: column; }
.label-row {
  display: grid;
  grid-template-columns: 2.4in 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1.5px solid var(--p-civic);
}
.label-row:last-child { border-bottom: none; }
.label-key {
  font-family: var(--font-body); font-weight: 800;
  font-size: 11pt; letter-spacing: 0.16em;
  color: #8C6A1F;
}
.label-row .writeline { height: 24px; }
.label-foot {
  background: color-mix(in srgb, var(--p-civic) 18%, var(--paper));
  padding: 10px 18px;
  font-family: var(--font-body); font-size: 9.5pt;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 12px;
}
.writeline-inline--mid { width: 1.6in; }
.writeline-inline--small { width: 1.2in; }
.label-stamp-mini {
  margin-left: auto;
  font-family: var(--font-body); font-weight: 800;
  font-size: 9pt; letter-spacing: 0.2em;
  border: 1.5px solid var(--ink-soft); color: var(--ink-soft);
  padding: 3px 8px; border-radius: 3px;
}

/* ---------- P14 Two human-question prompts ---------- */
.p14-prompts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; margin: 14px 0 8px;
  flex: 1 1 auto;
}
.p14-prompt {
  background: var(--paper);
  border: 2px solid var(--p-empathy);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 6px;
}
.p14-prompt-eyebrow {
  font-family: var(--font-body); font-weight: 800;
  font-size: 10pt; letter-spacing: 0.2em;
  color: var(--p-empathy);
}
.p14-prompt-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15pt; color: var(--ink); line-height: 1.25;
  margin: 4px 0 8px;
}
.p14-prompt-title em { font-style: italic; }
.p14-lines { display: flex; flex-direction: column; gap: 8px; }
.p14-lines .writeline { height: 24px; }
.p14-prompt-foot {
  margin-top: 8px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 9.5pt; letter-spacing: 0.1em;
  color: var(--ink-mute); text-transform: uppercase;
}
.p14-prompt-foot em { font-style: italic; text-transform: none; font-family: var(--font-display); font-weight: 600; }
.p14-prompt > .writeline { height: 22px; }

/* ---------- P15 Build Your Own Little World canvas ---------- */
.p15-canvas {
  flex: 1 1 auto;
  margin: 14px 0 8px;
  background: color-mix(in srgb, var(--p-civic) 6%, var(--paper));
  border: 3px solid var(--p-civic);
  border-radius: 12px;
  padding: 10px;
  display: grid;
}
.p15-canvas-inner {
  position: relative;
  background: var(--paper);
  border: 1.5px dashed color-mix(in srgb, var(--p-civic) 60%, transparent);
  border-radius: 8px;
  min-height: 5.2in;
}
.p15-canvas-starter {
  position: absolute;
  left: 18px; bottom: 6px;
  display: flex; align-items: flex-end;
  z-index: 2;
}
.p15-canvas-starter img { height: 1.5in; width: auto; }
.p15-extras {
  position: absolute;
  right: 22px; bottom: 22px;
  display: flex; gap: 14px;
  color: var(--p-civic);
}

/* ---------- P16 Thinker's Pledge (extends cert) ---------- */
.b3-pledge .cert-frame {
  padding: 0.55in 0.7in 0.4in;
}
.b3-pledge .cert-title { font-size: 42pt; }
.b3-pledge .pledge-list {
  width: 84%;
  margin: 12px auto 16px;
  padding: 0;
  list-style: none;
  text-align: left;
}
.b3-pledge .pledge-list li {
  font-family: var(--font-display);
  font-size: 13pt;
  line-height: 1.45;
  color: var(--ink);
  padding: 8px 0 8px 30px;
  border-bottom: 1px solid color-mix(in srgb, var(--p-civic) 35%, transparent);
  position: relative;
}
.b3-pledge .pledge-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  font-family: var(--font-body); font-weight: 800;
  color: var(--p-civic);
  font-size: 16pt;
  line-height: 1;
}
.b3-pledge .pledge-list li:last-child { border-bottom: none; }
.b3-pledge .pledge-list em { font-style: italic; }

/* ---------- Certificate (inherited from book2 style) ---------- */
.certificate-page {
  background: var(--paper);
  padding: 0.6in;
}
.certificate-page .cert-frame {
  flex: 1 1 auto;
  position: relative;
  width: 100%; height: 100%;
  border: 3px solid var(--p-civic);
  border-radius: 6px;
  padding: 0.7in 0.7in 0.5in;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: radial-gradient(ellipse at top, color-mix(in srgb, var(--p-civic) 10%, var(--paper)) 0%, var(--paper) 60%);
}
.certificate-page .cert-frame::before {
  content: ""; position: absolute; inset: 8px;
  border: 1.5px solid var(--p-civic); border-radius: 4px; pointer-events: none;
}
.cert-corner { position: absolute; width: 28px; height: 28px; border: 3px solid var(--p-civic); }
.cert-corner--tl { top: 18px; left: 18px; border-right: none; border-bottom: none; }
.cert-corner--tr { top: 18px; right: 18px; border-left: none; border-bottom: none; }
.cert-corner--bl { bottom: 18px; left: 18px; border-right: none; border-top: none; }
.cert-corner--br { bottom: 18px; right: 18px; border-left: none; border-top: none; }
.cert-badge { margin-top: 12px; }
.cert-eyebrow {
  font-family: var(--font-body); font-weight: 800;
  font-size: 10pt; letter-spacing: 0.24em; color: var(--p-civic); margin-top: 16px;
}
.cert-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 48pt; line-height: 1.0; letter-spacing: -0.01em;
  margin: 10px 0 0 0; color: var(--ink);
}
.cert-rule { width: 80px; height: 4px; background: var(--p-civic); margin: 18px 0; border-radius: 2px; }
.cert-statement { font-family: var(--font-display); font-style: italic; font-size: 18pt; color: var(--ink); margin-bottom: 26px; }
.cert-nameblock { width: 70%; margin: 0 auto; }
.cert-nameline { height: 36px; }
.cert-namelabel {
  font-family: var(--font-body); font-weight: 600; font-size: 9pt;
  letter-spacing: 0.12em; color: var(--ink-mute); margin-top: 4px; text-transform: uppercase;
}
.cert-bottom-strip { margin-top: auto; width: 100%; position: relative; padding-top: 24px; }
.cert-floor { position: absolute; left: 5%; right: 5%; bottom: 36px; height: 0; border-bottom: 2px solid var(--p-civic); }
.cert-cheerers { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: end; justify-items: center; }
.cert-cheerer { display: flex; align-items: flex-end; }
.cert-cheerer img { height: 1.0in; width: auto; mix-blend-mode: multiply; }
.cert-foot {
  width: 100%; display: flex; justify-content: space-between; margin-top: 22px;
  font-family: var(--font-body); font-size: 10pt; color: var(--ink-soft);
}
.writeline-inline {
  display: inline-block; width: 2.4in;
  border-bottom: 1.5px solid var(--ink-faint);
  height: 18px; vertical-align: bottom;
}

/* writebox utility shared */
.writebox {
  border: 1.5px dashed var(--ink-faint);
  border-radius: 6px;
  height: 60px;
}
