ul.events-list {
  padding: 0;
  list-style: none;
}
  ul.events-list .card {
    display: block;
    box-shadow: 0 10px 20px -15px rgba(0,0,0,0.5);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
    text-decoration: none;
    color: black;
    transition-duration: 0.3s;
    position: relative;
  }
    ul.events-list .card:hover {
      box-shadow: 0 20px 20px -10px rgba(0,0,0,0.15);
    }
    ul.events-list .card > img {
      width: 100%;
      height: auto;
      aspect-ratio: 1 / 0.7;
      object-fit: cover;
      filter: grayscale(1);
    }
    ul.events-list .card > div {
      padding: 1rem;
    }
      ul.events-list .card > div h4 {
        font-size: 1rem;
        line-height: 1.2rem;
        font-weight: 600;
        text-transform: uppercase;
        height: 2.5rem;
        white-space: normal;
      }

    ul.events-list .card img[alt="dotsV"] {
      width: 15px;
    }
  
ul.events-list .card .day-month {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
  ul.events-list .card .day-month > span.day {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1;
  }
  ul.events-list .card .day-month > span.month {
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1;
  }
  ul.events-list .card span.days,
  ul.events-list .card span.time {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
  }
  ul.events-list .card span.description {
    margin-top: 1rem;
    display: block;
    font-size: 0.8rem;
    white-space: break-spaces;
  }
  ul.events-list .card label {
    color: black;
    background: white;
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    font-weight: 600;
    font-size: 0.8rem;
  }

@media screen and (max-width: 767px) {
  .slider-mobile .card {
    width: calc(95vw - 3rem);
  }
}