.events-wrapper .card {
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.events-wrapper .card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.card-title {
  position: relative;
  margin: 0;
  margin: 10px 0;
}

.card-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 80%;
  background-color: #fd5602;
}

.news-wrapper .card-title::before {
  height: 100%;
  top: 0;
}

.news-wrapper a {
  text-decoration: underline;
  color: rgb(70, 70, 70);
  transition: color 0.3s ease;
}

.news-wrapper a:hover {
  color: #fd5602;
}

.news-wrapper .card::after {
  position: absolute;
  content: "";
  height: 33px;
  width: 2px;
  background-color: #66666650;
  bottom: 100%;
  left: 50%;
  z-index: 10;
}

.news-wrapper .card:first-child:after {
  display: none;
}
