.event-feed {
  max-width: 900px;
}

.event-posts {
  display: grid;
  gap: 2rem;
}

.event-post {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.event-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.75rem;
  background: #eadfce;
}

.event-media img {
  width: 100%;
  height: min(620px, 62vw);
  object-fit: contain;
  background: var(--paper);
}

.event-media img:only-child {
  grid-column: 1 / -1;
  height: min(680px, 72vw);
}

@media (max-width: 620px) {
  .event-media {
    grid-template-columns: 1fr;
  }

  .event-media img,
  .event-media img:only-child {
    height: auto;
    max-height: 72vh;
  }
}

.event-post-copy {
  padding: clamp(1.5rem, 5vw, 3.5rem);
}

.event-post-copy h2 {
  margin: 0.7rem 0 1.2rem;
  font: 600 clamp(2.4rem, 5vw, 4rem) / 0.98 "Cormorant Garamond";
}

.event-post-copy p {
  color: #6a5d51;
  font-size: 1rem;
  line-height: 1.8;
  white-space: pre-line;
}
