.event-card{
  background: #fff;
  margin: 20px 0;
}

.event-card__link{
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  color: inherit;
}

.event-card__media{
  width: 140px;
  height: 140px;
  flex: 0 0 140px;
  overflow: hidden;
  background: #f3f4f7;
}

.event-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-card__placeholder{
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f3f4f7, #e9ebf2);
}

.event-card__content{
  flex: 1;
  min-width: 0;
}

.event-card__title{
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: #111;
}

.event-card__meta{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #444;
  flex-wrap: wrap;
}

.event-card__avatar{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  object-fit: cover;
  display: inline-block;
}

.event-card__avatar--placeholder{
  background: #e9ebf2;
  border: 1px solid #dde1ee;
}

.event-card__dot,
.event-card__time{
  color: #777;
}
@media (max-width: 600px){
  .event-card__time{
    width: 100%; 
    flex-basis: 100%;
    /* margin-left: 32px;  */
  }

  .event-card__dot{
    display: none;
  }
}