.bv-event-item {
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bv-border-soft);
}

.bv-event-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.bv-event-item__date {
  flex: 0 0 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f0f8f4;
  border: 1px solid #d5e8dc;
  border-radius: 12px;
  padding: 8px 4px;
  text-align: center;
  transition: var(--bv-transition);
}

.bv-event-item:hover .bv-event-item__date {
  background: var(--bv-primary-light);
  transform: translateY(-2px);
}

.bv-event-item__day {
  font-size: 24px;
  font-weight: 800;
  color: var(--bv-primary);
  line-height: 1;
}

.bv-event-item__month {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  line-height: 1;
}

.bv-event-item__title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.bv-event-item__title:hover {
  color: var(--bv-primary);
}

.bv-event-item__meta {
  margin-top: 6px;
  font-size: 13px;
  color: var(--bv-text-soft);
}