/* Navigation around the supplied document; original page styling stays intact. */
.document-reader-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  max-width: 1123px;
  margin: 0 auto 20px;
  font-size: 15px;
  line-height: 1.6;
}
.document-reader-nav a { padding: 10px 0; text-underline-offset: 5px; }
.document-reader-nav span { color: var(--muted); }
.document-reader-actions { display: flex; align-items: center; gap: 18px; }
.document-reader-pdf {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 7px 14px !important;
  text-decoration: none;
}
.document-preview-cta {
  box-sizing: border-box;
  width: min(960px, calc(100% - 32px));
  margin: 36px auto 64px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid #cbd8d3;
  border-left: 6px solid #dc755f;
  border-radius: 22px;
  background: #fffdf7;
  color: #25383b;
  box-shadow: 0 18px 48px rgba(37, 56, 59, .1);
  text-align: center;
}
.document-preview-kicker {
  margin: 0 0 8px;
  color: #dc755f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}
.document-preview-cta h2 {
  margin: 0;
  color: #286461;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}
.document-preview-cta > p:not(.document-preview-kicker) {
  margin: 18px 0 22px;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  line-height: 1.6;
}
.document-preview-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #397d7b;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.document-preview-cta a:focus-visible { outline: 3px solid #dc755f; outline-offset: 4px; }
@media screen and (max-width: 540px) {
  .document-reader-nav { gap: 4px 16px; }
  .document-reader-nav span { display: none; }
  .document-reader-actions { gap: 12px; }
  .document-preview-cta { width: calc(100% - 20px); margin-top: 24px; padding: 26px 20px; }
}
