/* The exhibition artwork is a complete 1920 × 1000 composition: keep it whole. */
.event-section {
  display: block;
  line-height: 0;
  background: #f4f3ef;
  overflow: hidden;
}

.event-section > img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 800px) {
  .event-section {
    min-height: 0;
  }

  .event-section > img {
    min-width: 720px;
    max-width: none;
    transform: translateX(-22%);
  }
}
