:root {
  --navy: #122b3b;
  --teal: #007f83;
  --ink: #193543;
  --muted: #61747e;
  --paper: #fff;
  --line: #dce6e9;
  --red: #ae3a43;
  --gold: #b87516;
  font-family: "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  color: var(--ink);
  background: #eaf0f2;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #db9b35;
  outline-offset: 4px;
}
button {
  border: 1px solid #c9d8df;
  background: white;
  color: var(--navy);
  border-radius: 7px;
  padding: 9px 15px;
}
button:hover {
  background: #e0eff0;
}
button:disabled {
  opacity: 0.4;
  cursor: default;
}
a {
  color: var(--teal);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.appbar {
  height: 60px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.appbar > div {
  display: flex;
  gap: 9px;
  align-items: center;
}
.appbar a {
  font-size: 14px;
}
.site-name {
  letter-spacing: 2px;
  font-size: 12px !important;
  color: var(--navy);
}
#stage {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px #0a253b12;
  background: white;
}
#deck {
  width: 1280px;
  transform-origin: top left;
}
.slide {
  width: 1280px;
  height: 720px;
  background: var(--paper);
  padding: 42px 62px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.slide[hidden] {
  display: none;
}
.slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 108px;
  background: var(--teal);
}
.eyebrow {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 15px;
}
h1 {
  font-size: 43px;
  line-height: 1.24;
  letter-spacing: -1.3px;
  margin: 0 0 13px;
  font-weight: 750;
}
.lead {
  font-size: 23px;
  line-height: 1.5;
  margin: 0;
  color: var(--muted);
}
.slide-body {
  margin-top: 30px;
  flex: 1;
  min-height: 0;
}
p {
  line-height: 1.65;
}
h3 {
  font-size: 25px;
  margin: 0 0 12px;
  line-height: 1.35;
}
footer {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 18px;
  min-height: 46px;
}
footer > span {
  flex: 1;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 12px;
  white-space: nowrap;
}
.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.page-number {
  font-size: 23px;
  color: var(--navy);
  min-width: 30px;
  text-align: right;
}
.cards {
  display: flex;
  gap: 18px;
}
.card {
  flex: 1;
  min-width: 0;
  background: #eff5f6;
  border: 1px solid #dce7e9;
  border-top: 4px solid var(--teal);
  padding: 24px;
  border-radius: 0 0 12px 12px;
}
.card p {
  font-size: 23px;
  margin: 0;
}
.card.danger {
  border-color: #efd6d9;
  border-top-color: var(--red);
  background: #fff3f4;
}
.card.warm {
  border-color: #ecdfc9;
  border-top-color: var(--gold);
  background: #fff8ed;
}
.card b {
  color: var(--teal);
}
.callout {
  margin-top: 24px;
  padding: 15px 20px;
  border-left: 4px solid var(--teal);
  background: #e7f3f2;
  font-size: 22px;
  line-height: 1.5;
}
.flow {
  display: flex;
  gap: 24px;
}
.flow article {
  flex: 1;
  position: relative;
  padding: 22px 18px 18px;
  background: #f0f5f6;
  border-radius: 12px;
}
.flow article:not(:last-child):after {
  content: "→";
  position: absolute;
  right: -21px;
  top: 45%;
  font-size: 23px;
  color: var(--teal);
}
.flow span {
  display: inline-flex;
  border-radius: 50%;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: white;
  font-size: 17px;
  margin-bottom: 14px;
}
.flow p {
  font-size: 22px;
  margin: 0;
}
.cards + .flow,
.flow + .cards {
  margin-top: 20px;
}
.flow h3 {
  font-size: 25px;
}
.topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.topics > div {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f0f5f6;
  padding: 27px 20px;
  border-radius: 9px;
  font-size: 24px;
}
.topics b {
  color: var(--teal);
  font-size: 30px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.split .cards {
  flex-direction: column;
  gap: 16px;
}
.split .card {
  padding: 18px 23px;
}
.feature {
  background: var(--navy);
  color: white;
  border-radius: 12px;
  padding: 32px;
}
.feature small {
  font-size: 19px;
  color: #91d8d5;
}
.feature h3 {
  font-size: 35px;
  margin-top: 18px;
}
.feature p {
  font-size: 24px;
  margin: 15px 0 0;
}
.feature .huge {
  font-size: 105px;
  line-height: 1.05;
  margin: 18px 0;
  color: #75d4c8;
}
.huge em {
  font-size: 40px;
  font-style: normal;
}
.metrics {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: 139px 139px;
  gap: 18px;
}
.metric {
  padding: 20px 24px;
  border-radius: 12px;
  background: #f0f5f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.metric.primary {
  grid-row: span 2;
  background: var(--teal);
  color: white;
}
.metric span {
  font-size: 20px;
}
.metric b {
  font-size: 54px;
  line-height: 1.15;
  letter-spacing: -2px;
}
.metric.primary b {
  font-size: 97px;
  margin: 15px 0;
}
.metric em {
  font-size: 0.45em;
  font-style: normal;
  letter-spacing: 0;
}
.metric small {
  font-size: 17px;
}
.metric.warm {
  background: #fff3dc;
}
.metric.danger {
  background: #fce7e9;
  color: var(--red);
}
.range-labels {
  position: relative;
  height: 30px;
  font-size: 24px;
  margin-bottom: 10px;
}
.range-labels span {
  position: absolute;
  left: 0;
}
.range-labels span:nth-child(2) {
  left: 30%;
  transform: translateX(-50%);
}
.range-labels span:last-child {
  left: auto;
  right: 0;
}
.range {
  display: flex;
  border-radius: 12px;
  overflow: hidden;
}
.range > div {
  width: 30%;
  background: #f8dcaa;
  padding: 20px;
  text-align: center;
  font-size: 24px;
}
.range > div + div {
  width: 70%;
  background: #d8eeeb;
}
.range-bracket {
  text-align: center;
  border: solid var(--teal);
  border-width: 0 2px 2px;
  margin: 8px 0 25px;
  padding: 8px;
  font-size: 24px;
  color: var(--teal);
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 23px;
  text-align: left;
}
th {
  background: var(--navy);
  color: white;
  padding: 14px 20px;
}
td {
  padding: 15px 20px;
  border-bottom: 1px solid #d7e3e6;
}
tr:nth-child(even) td {
  background: #f2f6f7;
}
td:first-child {
  font-weight: 700;
  width: 29%;
}
table + .flow {
  margin-top: 23px;
}
table + .flow article {
  padding: 15px 18px;
}
table + .flow span {
  display: none;
}
table + .flow p {
  font-size: 21px;
}
.dose-pair {
  display: flex;
  gap: 28px;
}
.dose-pair article {
  flex: 1;
  background: var(--navy);
  color: white;
  border-radius: 15px;
  text-align: center;
  padding: 28px;
}
.dose-pair span {
  font-size: 25px;
}
.dose-pair strong {
  display: block;
  font-size: 105px;
  line-height: 1.3;
  letter-spacing: -4px;
  color: #74d8c8;
}
.dose-pair small {
  font-size: 47px;
}
.dose-pair p {
  font-size: 23px;
  margin: 0;
}
.alarms .low {
  background: #fff0ed;
  color: #803b33;
}
.alarms .low strong {
  color: #bd5844;
}
.decision-start {
  text-align: center;
  background: var(--navy);
  color: white;
  padding: 18px;
  font-size: 28px;
  margin: 0 auto 24px;
  width: 65%;
  border-radius: 12px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.workflow-grid article {
  position: relative;
  padding: 21px 24px 21px 75px;
  background: #f0f5f6;
  border-radius: 10px;
}
.workflow-grid b {
  position: absolute;
  left: 24px;
  top: 20px;
  font-size: 30px;
  color: var(--teal);
}
.workflow-grid p {
  font-size: 22px;
  margin: 0;
}
.workflow-grid h3 {
  margin-bottom: 8px;
}
.recap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.recap article {
  background: #eff5f6;
  border-radius: 12px;
  padding: 30px 18px;
  text-align: center;
}
.recap b {
  font-size: 36px;
  color: var(--teal);
  white-space: nowrap;
}
.recap p {
  font-size: 23px;
}
.reference-layout {
  display: grid;
  grid-template-columns: 1fr 215px;
  gap: 35px;
}
.reference-layout p {
  font-size: 20px;
  line-height: 1.48;
  margin: 0 0 13px;
}
.reference-layout .authors {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}
.reference-layout .paper-title {
  font-weight: 700;
  font-size: 23px;
}
.reference-layout .ref-small {
  font-size: 16px;
}
.reference-layout aside {
  text-align: center;
  background: #f0f5f6;
  padding: 15px;
  border-radius: 12px;
}
.qr {
  width: 178px;
  height: 178px;
}
.reference-layout aside p {
  font-size: 17px;
}
.reference-layout aside a {
  font-size: 17px;
}
.cover {
  background: var(--navy);
  color: white;
}
.cover:before {
  background: #76d6c6;
  height: 100%;
}
.cover .eyebrow {
  color: #76d6c6;
  margin-bottom: 30px;
}
.cover h1 {
  font-size: 65px;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.cover .lead {
  color: #bbd2da;
  font-size: 26px;
}
.cover .slide-body {
  margin-top: 24px;
}
.cover-bottom p {
  font-size: 24px;
  line-height: 1.6;
  color: #d5e3e7;
  margin: 20px 0;
}
.cover-bottom strong {
  font-size: 24px;
}
.cover-line {
  width: 75px;
  height: 4px;
  background: #70cebc;
}
.cover-symbol {
  position: absolute;
  right: 88px;
  top: 176px;
  width: 230px;
  height: 280px;
  border: 1px solid #3b6273;
  border-radius: 110px 110px 35px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 23px;
  transform: rotate(-8deg);
}
.cover-symbol span {
  font-size: 25px;
  letter-spacing: 6px;
  color: #82ccca;
}
.cover footer {
  border-color: #3b5360;
  color: #a6bec9;
}
.cover .page-number {
  color: white;
}
.navigation {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.navigation > div {
  width: 220px;
  text-align: center;
}
#counter {
  font-size: 15px;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
}
.progress {
  background: #ccd9df;
  height: 4px;
  margin-top: 9px;
  border-radius: 4px;
  overflow: hidden;
}
#progress-fill {
  display: block;
  height: 100%;
  width: 3.333%;
  background: var(--teal);
  transition: width 0.15s;
}
#notes {
  max-width: 1000px;
  margin: 0 auto 30px;
  padding: 25px 32px;
  background: white;
  border-radius: 10px;
}
#notes h2 {
  margin-top: 0;
  font-size: 23px;
}
#notes p {
  font-size: 19px;
}
dialog {
  border: 0;
  border-radius: 15px;
  padding: 26px;
  max-width: 850px;
  width: 90vw;
  max-height: 85vh;
  box-shadow: 0 20px 100px #001b4266;
}
dialog::backdrop {
  background: #112b3bcc;
}
.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.dialog-head h2 {
  margin: 0;
}
#toc-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
#toc-items button {
  text-align: left;
  line-height: 1.5;
}
#toc-items button[aria-current="page"] {
  background: #deefed;
  border-color: var(--teal);
}
body:fullscreen {
  background: #101c23;
}
body:fullscreen .appbar {
  background: #eaf0f2;
}
body:fullscreen .navigation {
  background: #eaf0f2;
}
@media (max-width: 700px) {
  .appbar {
    padding: 12px 14px;
    height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .appbar > div {
    gap: 7px;
    flex-wrap: wrap;
  }
  .appbar button {
    padding: 8px 10px;
    font-size: 13px;
  }
  .appbar a {
    font-size: 13px;
  }
  .site-name {
    font-size: 11px !important;
  }
  #stage {
    width: 100% !important;
    height: auto !important;
    box-shadow: none;
  }
  #deck {
    width: 100%;
    transform: none !important;
  }
  .slide {
    width: 100%;
    height: auto;
    min-height: calc(100svh - 200px);
    padding: 28px 22px 18px;
    overflow: visible;
  }
  h1 {
    font-size: 32px;
    letter-spacing: -0.6px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
  }
  .lead {
    font-size: 18px;
  }
  .slide-body {
    margin-top: 24px;
  }
  .cards,
  .flow,
  .dose-pair {
    flex-direction: column;
    gap: 15px;
  }
  .card {
    padding: 20px;
  }
  .card p,
  .flow p,
  .feature p {
    font-size: 20px;
  }
  .card h3,
  .flow h3 {
    font-size: 23px;
  }
  .flow article {
    padding: 20px;
  }
  .flow article:not(:last-child):after {
    content: none;
  }
  .flow span {
    margin-bottom: 10px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .feature {
    padding: 25px;
  }
  .feature .huge {
    font-size: 78px;
  }
  .feature h3 {
    font-size: 31px;
  }
  .callout {
    font-size: 18px;
    padding: 14px 16px;
    margin-top: 20px;
  }
  .topics {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .topics > div {
    font-size: 20px;
    padding: 14px 18px;
  }
  .topics b {
    font-size: 24px;
  }
  .metrics {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .metric {
    padding: 17px 14px;
  }
  .metric.primary {
    grid-row: auto;
    grid-column: span 2;
  }
  .metric.primary b {
    font-size: 80px;
  }
  .metric span {
    font-size: 16px;
  }
  .metric b {
    font-size: 43px;
  }
  .metric small {
    font-size: 14px;
  }
  .range-labels {
    font-size: 18px;
  }
  .range > div {
    font-size: 18px;
    padding: 20px 5px;
  }
  .range-bracket {
    font-size: 19px;
  }
  .dose-pair article {
    padding: 22px;
  }
  .dose-pair strong {
    font-size: 84px;
  }
  .dose-pair span,
  .dose-pair p {
    font-size: 20px;
  }
  .decision-start {
    width: 100%;
    font-size: 23px;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .workflow-grid p {
    font-size: 19px;
  }
  table {
    font-size: 17px;
  }
  th,
  td {
    padding: 13px 10px;
  }
  td:first-child {
    width: 31%;
  }
  .recap {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .recap article {
    padding: 22px 8px;
  }
  .recap b {
    font-size: 23px;
  }
  .recap p {
    font-size: 18px;
  }
  .reference-layout {
    grid-template-columns: 1fr;
  }
  .reference-layout aside {
    max-width: 240px;
    margin: auto;
  }
  .reference-layout .paper-title {
    font-size: 20px;
  }
  .reference-layout .authors {
    font-size: 13px;
  }
  .reference-layout p {
    font-size: 18px;
  }
  footer {
    flex-wrap: wrap;
    font-size: 10px;
    gap: 7px;
    margin-top: 26px;
  }
  footer > span {
    flex-basis: 100%;
    line-height: 1.6;
  }
  .brand {
    flex: 1;
    font-size: 11px;
  }
  .brand img {
    width: 31px;
    height: 31px;
  }
  .page-number {
    font-size: 23px;
  }
  .cover h1 {
    font-size: 42px;
    letter-spacing: 0;
  }
  .cover .lead {
    font-size: 20px;
  }
  .cover .eyebrow {
    font-size: 12px;
    margin-bottom: 22px;
  }
  .cover-symbol {
    display: none;
  }
  .cover-bottom p,
  .cover-bottom strong {
    font-size: 20px;
  }
  .cover footer {
    margin-top: 35px;
  }
  .navigation {
    gap: 12px;
    height: 76px;
    padding: 10px;
    position: sticky;
    bottom: 0;
    background: #eaf0f2;
    z-index: 2;
  }
  .navigation button {
    font-size: 14px;
    padding: 10px 12px;
  }
  .navigation > div {
    width: 110px;
  }
  #notes {
    margin: 10px 12px 25px;
    padding: 22px;
  }
  #notes p {
    font-size: 17px;
  }
  #toc-items {
    grid-template-columns: 1fr;
  }
  dialog {
    padding: 20px;
  }
}
@media print {
  @page {
    size: 13.333333in 7.5in;
    margin: 0;
  }
  html,
  body {
    margin: 0;
    padding: 0;
    background: white;
    width: 1280px;
  }
  body {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
  .appbar,
  .navigation,
  #notes,
  dialog,
  noscript {
    display: none !important;
  }
  #stage {
    width: 1280px !important;
    height: auto !important;
    overflow: visible;
    box-shadow: none;
    margin: 0;
  }
  #deck {
    transform: none !important;
    width: 1280px;
  }
  .slide,
  .slide[hidden] {
    display: flex !important;
    width: 1280px;
    height: 720px;
    min-height: 0;
    padding: 42px 62px 24px;
    overflow: hidden;
    break-after: page;
    page-break-after: always;
  }
  .slide:last-child {
    break-after: auto;
    page-break-after: auto;
  }
  .slide:before {
    print-color-adjust: exact;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
}
/* Original source panels and freely licensed photographs */
.cover-photo {
  position: absolute;
  right: 62px;
  top: 207px;
  width: 338px;
  margin: 0;
}
.cover-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.cover-photo figcaption {
  font-size: 12px;
  line-height: 1.6;
  color: #c1d9df;
  margin-top: 14px;
}
.cover-photo a {
  color: #8bdace;
}
.photo-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 26px;
  height: 100%;
}
.photo-layout > figure {
  margin: 0;
  align-self: center;
}
.photo-layout > figure img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.photo-layout figcaption {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
}
.photo-copy > .cards {
  flex-direction: column;
  gap: 12px;
}
.photo-copy .card {
  padding: 12px 18px;
  border-top-width: 3px;
}
.photo-copy h3 {
  font-size: 23px;
  margin-bottom: 6px;
}
.photo-copy .card p {
  font-size: 20px;
  line-height: 1.45;
}
.photo-copy .callout {
  font-size: 19px;
  margin-top: 13px;
  padding: 11px 16px;
}
.source-slide {
  padding: 26px 42px 18px;
}
.source-slide .eyebrow {
  font-size: 14px;
  margin-bottom: 8px;
}
.source-slide h1 {
  font-size: 33px;
  margin-bottom: 8px;
}
.source-slide .lead {
  font-size: 17px;
  line-height: 1.45;
}
.source-slide .slide-body {
  margin-top: 14px;
  display: flex;
  min-height: 0;
}
.original-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.figure-open {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 0;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: white;
  cursor: zoom-in;
}
.figure-open:hover {
  background: white;
}
.figure-open img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.original-figure figcaption {
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
  padding-top: 5px;
}
.source-slide footer {
  margin-top: 10px;
  min-height: 38px;
  padding-top: 8px;
}
.source-slide footer > span {
  font-size: 10px;
}
.source-slide .brand {
  font-size: 11px;
}
#figure-dialog {
  width: 96vw;
  max-width: 1600px;
  max-height: 95vh;
  padding: 18px;
  overflow: hidden;
}
#figure-dialog .dialog-head {
  gap: 20px;
}
#figure-dialog h2 {
  font-size: 21px;
}
#figure-scroll {
  overflow: auto;
  max-height: 75vh;
  background: #f3f6f7;
  text-align: center;
  overscroll-behavior: contain;
  touch-action: pan-x pan-y pinch-zoom;
}
#figure-large {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  margin: auto;
}
.zoom-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.figure-dialog-source {
  font-size: 12px;
  margin: 10px 0 0;
}
.sources-page main {
  max-width: 1000px;
  margin: 35px auto;
  padding: 35px;
  background: white;
  border-radius: 12px;
}
.sources-page h1 {
  font-size: 34px;
}
.sources-page h2 {
  font-size: 25px;
  margin-top: 30px;
}
.sources-page li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 10px;
}
.sources-page section {
  padding: 20px;
  background: #f0f5f6;
  margin: 18px 0;
  border-radius: 10px;
}
.sources-page p {
  font-size: 18px;
}
.license-photo {
  width: 400px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 700px) {
  .cover-photo {
    position: static;
    width: 100%;
    margin: 24px 0 0;
  }
  .cover-photo figcaption {
    font-size: 11px;
  }
  .photo-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .photo-layout > figure {
    width: 100%;
    max-width: 390px;
  }
  .photo-copy .card p {
    font-size: 20px;
  }
  .photo-copy .callout {
    font-size: 18px;
  }
  .source-slide {
    padding: 25px 16px 20px;
  }
  .source-slide h1 {
    font-size: 29px;
  }
  .source-slide .lead {
    font-size: 17px;
  }
  .source-slide .slide-body {
    min-height: 260px;
  }
  .original-figure {
    height: auto;
  }
  .figure-open {
    flex: none;
    height: auto;
  }
  .figure-open img {
    height: auto;
    max-height: none;
    width: 100%;
  }
  .original-figure figcaption {
    font-size: 13px;
    margin: 15px 0;
  }
  .source-slide footer > span {
    font-size: 10px;
  }
  #figure-dialog {
    padding: 12px;
  }
  #figure-dialog .dialog-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .zoom-controls button {
    padding: 8px 12px;
  }
  .sources-page main {
    margin: 0;
    padding: 23px;
  }
  .sources-page h1 {
    font-size: 30px;
  }
  .sources-page section {
    padding: 15px;
  }
}
@media print {
  #figure-dialog {
    display: none !important;
  }
  .source-slide {
    padding: 26px 42px 18px;
  }
  .original-figure figcaption {
    display: none;
  }
  .cover-photo {
    position: absolute;
    right: 62px;
    top: 207px;
    width: 338px;
    margin: 0;
  }
  .cover-photo figcaption {
    font-size: 12px;
  }
}
