.evl-block {
  background: #F3E9E0;
}
.evl-block__heading {
  margin-bottom: 2rem;
}
.evl-block__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.evl-block .evl-item {
  display: grid;
  grid-template-columns: 1fr 42%;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(31, 54, 66, 0.08);
  box-shadow: 0 2px 16px rgba(16, 24, 29, 0.07), 0 0 0 0 transparent;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 250ms ease, transform 250ms ease;
  align-items: stretch;
}
.evl-block .evl-item:hover {
  box-shadow: 0 8px 32px rgba(16, 24, 29, 0.12);
  transform: translateY(-2px);
}
.evl-block .evl-item__left {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.evl-block .evl-item__date-badge {
  background: #F2D67A;
  border-radius: 6px;
  padding: 0.55rem 0.85rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  flex-shrink: 0;
  margin-bottom: 1.1rem;
}
.evl-block .evl-item__date-badge--past {
  background: rgba(31, 54, 66, 0.12);
}
.evl-block .evl-item__past-label {
  display: block;
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  color: #3A7594;
  text-align: center;
}
.evl-block .evl-item__day {
  display: block;
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1;
  color: #1F3642;
}
.evl-block .evl-item__month {
  display: block;
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1F3642;
  margin-top: 2px;
}
.evl-block .evl-item__meta-value--past {
  color: #3A7594;
}
.evl-block .evl-item--past {
  opacity: 0.75;
}
.evl-block .evl-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.evl-block .evl-item__type {
  color: #3A7594;
  margin: 0;
}
.evl-block .evl-item__title {
  color: #1F3642;
  margin: 0;
}
.evl-block .evl-item__overview {
  font-family: "helvetica-lt-pro", sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.7;
  color: #10181D;
  margin: 0;
  opacity: 0.85;
}
.evl-block .evl-item__meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.evl-block .evl-item__meta-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.evl-block .evl-item__meta-label {
  color: #3A7594;
  margin: 0;
}
.evl-block .evl-item__meta-value {
  color: #1F3642;
  margin: 0;
}
.evl-block .evl-item__btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}
.evl-block .evl-item__image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: #1F3642;
}
.evl-block .evl-item__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.evl-block .evl-item__image-wrap.is--ratio-landscape {
  min-height: 0;
  aspect-ratio: 16/9;
}
.evl-block .evl-item__image-wrap.is--ratio-square {
  min-height: 0;
  aspect-ratio: 1/1;
}
.evl-block .evl-item__image-wrap.is--ratio-portrait {
  min-height: 0;
  aspect-ratio: 3/4;
}
.evl-block .evl-item__image-wrap.is--contain {
  background: transparent;
}
.evl-block .evl-item__image-wrap.is--contain img {
  object-fit: contain;
}
.evl-block .evl-item:hover .evl-item__image-wrap img {
  transform: scale(1.04);
}
@media screen and (max-width: 1024px) {
  .evl-block .evl-item {
    grid-template-columns: 1fr;
  }
  .evl-block .evl-item__image-wrap {
    order: -1;
    min-height: 220px;
    max-height: 320px;
    border-radius: 0;
  }
}
@media screen and (max-width: 600px) {
  .evl-block .evl-item__left {
    padding: 1.5rem;
  }
  .evl-block .evl-item__meta {
    flex-direction: column;
    gap: 0.75rem;
  }
}/*# sourceMappingURL=events-list.css.map */