.event-detail-banner {
  height: 150px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.event-subpage {
  margin-top: 50px;
}
.event-subpage__image {
  width: 100%;
  aspect-ratio: 1/1;
  max-height: 500px;
}
.event-subpage__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.images__item {
  width: auto;
  aspect-ratio: 3/4;
  max-height: 500px;
}
.images__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 767px) {
  .event-subpage {
    align-items: center;
    justify-content: center;
  }
  .event-subpage.-reverse {
    flex-direction: row-reverse;
    text-align: end;
  }
  .event-subpage.-reverse .event-subpage__text-inner {
    margin-right: 0;
    margin-left: auto;
  }
  .event-subpage__text-inner {
    max-width: 400px;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .event-detail-banner {
    height: 125px;
  }
}