section.events .events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  column-gap: 1.5vw;
  row-gap: 0.75vw;
  justify-items: stretch;
  align-items: stretch;
}

section.events .events-grid > div {
  display: grid;
  width: 1fr;
}

section.events .events-grid > div > a {
  display: grid;
}

.event-card {
  background-color: var(--sky);
  display: flex;
}

.event-card .event-image {
  width: 30%;
  background-size: cover;
  aspect-ratio: 3/4;
}

.event-card .event-image img {
  object-fit: cover;
  height: 100%;
}

.event-card .event-content {
  width: 70%;
  padding: 1ex;
}

.event-card .event-date::before,
.event-card .event-location::before {
  display: inline-block;
  box-sizing: content-box;
  width: 1.5em;
  margin-right: 0.5em;
  vertical-align: middle;
}
.event-card .event-date::before {
  content: url(/themes/fwrd/images/icons/event-date.svg);
}
.event-card .event-location::before {
  content: url(/themes/fwrd/images/icons/event-location.svg);
}

@media only screen and (max-width: 900px) {
  section.events .events-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

