/* colors */
/* easing bezier */
/* layout vars */
/* EVENT CARDS MODULE */
@media screen and (min-width : 48em) {
  .event-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }
}
@media screen and (min-width : 68.75em) {
  .event-cards {
    max-width: 1066.6666666667px;
  }
}
.event-cards a {
  color: inherit;
  text-decoration: none;
}

.event-card {
  background-color: white;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1), box-shadow 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  position: relative;
  display: flex;
  margin-bottom: 30px;
}
@media screen and (min-width : 48em) {
  .event-card {
    flex-basis: calc((100% - 30px) / 2);
    margin-bottom: initial;
  }
}
.event-card h3 {
  font-weight: 600;
  font-size: 1rem;
  padding-right: 30px;
}
.event-card .event-type {
  margin-bottom: 30px;
  color: #878F94;
}
.event-card .image-wrapper {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  aspect-ratio: 1/1;
  overflow: hidden;
  flex-basis: 45%;
}
.event-card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.45, 0, 0.55, 1);
}
.event-card .text-wrapper {
  padding: 15px;
  flex-basis: 55%;
  position: relative;
}
.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 15px 0px rgba(0, 0, 0, 0.12);
}
.event-card:hover img {
  transform: scale(1.15);
}
.event-card .arrow-link {
  position: absolute;
  bottom: 20px;
}
.event-card .arrow-link::after {
  top: 4px;
}
