* {
  box-sizing: border-box;
}
html {
  scrollbar-gutter: stable;
}
body {
  margin: 0;
  color: #222;
  background: white;
  font-family: Arial, sans-serif;
}
main {
  width: calc(100% - 40px);
  max-width: 800px;
  margin: auto;
  padding: 32px 0 60px;
}
a {
  color: inherit;
}
article {
  padding: 48px 0;
  border-bottom: 1px solid #ddd;
}
h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  margin: 0 0 24px;
  overflow-wrap: break-word;
}
p {
  font-size: 19px;
  line-height: 1.65;
  margin: 0 0 24px;
}
.deck {
  font-size: 22px;
  line-height: 1.4;
  color: #555;
}
.details {
  font-size: 14px;
  line-height: 1.65;
}
.subhead {
  font-size: 18px;
  line-height: 1.5;
  color: #555;
}
figure {
  margin: 36px 0;
}
.enlarge {
  display: block;
  cursor: zoom-in;
}
.enlarge img {
  display: block;
  width: 100%;
  height: auto;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid #265c75;
  outline-offset: 5px;
}
dialog {
  width: min(96vw, 1800px);
  max-width: none;
  max-height: 96vh;
  border: 0;
  padding: 44px 12px 12px;
  background: #fff;
}
dialog::backdrop {
  background: #000c;
}
dialog > img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(96vh - 60px);
  object-fit: contain;
  margin: auto;
}
.close-image {
  position: absolute;
  top: 8px;
  right: 12px;
  border: 0;
  background: white;
  font:
    15px Arial,
    sans-serif;
  padding: 6px;
  cursor: pointer;
}
html.image-open {
  overflow: hidden;
}
@media (max-width: 450px) {
  p {
    font-size: 17px;
  }
  .deck {
    font-size: 20px;
  }
}
