/* LIVE Rosenau */

.event-display {
  position: relative;
}
.event-display figure {
  
}
.event-display figure div {
  --ratio: 2 / 3;
  aspect-ratio: var(--ratio);
}
.event-display figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-display figure figcaption {
  color: var(--color-base) !important;
  /* font-size: small; */
}
.event-display figure figcaption span {
  color: var(--color-mute) !important;
}
@media screen and (max-width: 29.938em) {
  .event-card-full-grid .event-display figure div {
    --ratio: 3 / 2;
  }
  .event-card-full-grid .event-display figure img {
    object-position: top;
  }
}
@media screen and (min-width: 30em) {
  .event-display figure figcaption {
    position: absolute;
    bottom: 0;
    left: 110%;
    white-space: nowrap;
    text-align: right;
  }
}