body {
  background: #f9f9f6;
  font-family: Georgia, 'Times New Roman', serif;
  color: #222;
  margin: 0;
  padding: 0 5vw 5vw 5vw;
}

header.banner {
  width: 100vw;
  margin-left: calc(-1 * 5vw);
  margin-right: calc(-1 * 5vw);
  background: linear-gradient(90deg, #e6d6f7 0%, #f3eaff 100%);
  padding: 1.5em 5vw 1.2em 5vw;
  box-sizing: border-box;
  margin-bottom: 2.5em;
}

header.banner h1 {
  margin: 0;
  font-size: 2.5em;
  font-weight: normal;
  color: #4b2e6a;
  text-align: left;
}

.poem-unit {
  display: block;
  margin-bottom: 1.5em;
}

.left-image {
  display: flex;
  align-items: flex-start;
  gap: 1.5em;
  flex-wrap: wrap;
}

.image-column {
  flex: 0 0 280px;
  width: 280px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.image-column img {
  width: 100%;
  height: auto;
  display: block;
}

.image-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.4em;
  margin-bottom: 1.5em;
}

hr {
  border: none;
  height: 2px;
  max-width: 600px;
  width: 70%;
  margin: 2.5em 0 2.5em 0;
  background: linear-gradient(to right, #222 0%, #b6b6b6 40%, #e0e0e0 80%, rgba(224,224,224,0) 100%);
}

pre {
  margin: 0;
  padding: 0;
  font-size: 1.2em;
  line-height: 1.4;
  font-family: 'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
}

img {
  cursor: zoom-in;
}

.enlarged-image {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 90vw;
  max-height: 90vh;
  width: auto !important;
  height: auto !important;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: white;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  border: 2px solid #333;
  cursor: zoom-out;
}

.enlarged-image-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
