.events-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  margin: 0;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.events-list::-webkit-scrollbar {
  display: none;
}

.event-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 25px;
  text-decoration: none;
}

.event-item img {
  width: 100%;
  display: block;
}

.event-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(102, 48, 80, 0.9) 0%, rgba(102, 48, 80, 0) 70%);
  z-index: 1;
}

.event-date-vignette {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 58px;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

.event-date-vignette .day {
  font-family: "Quicksand", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: -19px;
}

.event-date-vignette .number {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
}

.event-date-vignette .month {
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.events-list .event-title,
a.event-item .event-title {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 80px;
  margin: -10px 0 0;
  padding: 12px 15px;
  box-sizing: border-box;
  z-index: 3;
  background-color: #204766 !important;
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

@media (max-width: 768px) {
  .events-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
  }

  .event-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
}
