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;
      }

    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;
  }
  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;
  }

a.share {
  position: absolute;
  top: 1rem;
  right: 1.6rem;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  text-decoration: none;
  border-radius: 2rem;
  line-height: 0;
  padding: 0;
  margin: 0;
  padding-right: 0.15rem;
  color: var(--bs-dark);
  transition-duration: var(--theme-transition-dur);
}
  a.share:hover {
    background: var(--bs-dark);
    color: white;
  }


.day-month {
  display: inline-flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;  
}
  .day-month > span.day {
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1;
  }
  .day-month > span.month {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
  }
  span.days,
  span.time {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
  }
  span.days {
    font-size: 1.2rem;
    line-height: 1;
  }
  label.price { font-size: 1.2rem; font-weight: 700; line-height: 1; }
  label.price > span { font-size: 1rem; font-weight: 700; }