.event-card{display:flex;width:100%;border-radius:30px;box-shadow:0 4px 60px rgba(0,0,0,.08)}
@media(max-width:980px){.event-card{flex-direction:column}}


.event-card__link {
  display: flex;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.event-card__image {
  flex: 0 0 420px;
}

.event-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.event-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 20px;
}

.event-card__date-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #AF5284;
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 980px) {
  .event-card,
  .event-card__link {
    flex-direction: column;
  }

  .event-card__image {
    width: 100%;
  }
}
.btn--secondary {
  background: transparent;
  color: #000;
  border: 2px solid #000;
  margin-left: 12px;
}
