.events-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.events-item {
  width: calc(33.333% - 20px); /* Adjust width as needed */
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.event-image {
  position: relative;
  width: 100%;
  padding-top: 66.66%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  border-radius: 5px;
}

.event-date {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--white);
  color: var(--black);
  padding: 5px 14px;
  font-size: 1rem;
  border-radius: 4px;
}

.event-month {
  text-transform: uppercase;
  font-size: var(--copyFontSmall);
  text-align: center;
  line-height: 1.2;
}

.event-day {
  font-size: var(--smallFontMax);
  font-weight: 500;
  text-align: center;
}

.event-title {
  text-align: center;
  margin-top: 20px;
  color: var(--white);
}

.event-location {
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: 20px;
  text-align: center;
}

@media only screen and (min-width: 981px) {
  .events-item {
    width: calc(33.333% - 20px);
  }
}

@media only screen and (max-width: 980px) {
  .events-item {
    width: 100%;
  }
}