#event-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1.2rem;
  margin-right: -1.2rem;
}
#event-list article {
  flex-basis: calc(33.333333333334% - 2.4rem);
  margin: 0 1.2rem 3.5rem;
  background: #EEF8F7;
  border-radius: 20px;
  overflow: hidden;
}
#event-list article > a {
  position: relative;
  display: flex;
  text-decoration: none;
  flex-direction: column;
  height: 100%;
}
#event-list .event-img {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 74%;
  overflow: hidden;
  background: #dae2cb;
}
#event-list .event-img strong {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: rgba(0,0,0,.73);
  color: #fff;
  border-radius: 7px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  padding: 0px 6px;
  display: block;
  line-height: 24px;
}
#event-list img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease-in-out;
}
#event-list article span.event-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
#event-list .event-body > small {
  color: #3D3D3D;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
#event-list .event-body > small svg {
  position: relative;
  top: -4px;
  margin-right: 10px;
}
#event-list article > a h2 {
  font-size: 18px;
  font-weight: 800;
  font-family: 'Poppins';
  line-height: 138.2%;
  color: #3D3D3D;
  margin-bottom: 24px;
  height: 100%;
  transition: color 0.25s ease-in-out;
}
#event-list .event-date {
  display: flex;
}
#event-list .event-date-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #000;
  padding: 4px;
  min-width: 40px;
  min-height: 43px;
  margin-right: 15px;
}
#event-list .event-date-icon small {
  color: #777;
  text-transform: uppercase;
  font-size: 10px;
  display: block;
  margin-bottom: -2px;
}
#event-list .event-date-icon span {
  font-family: 'Poppins';
  font-size: 19px;
  font-weight: 600;
  color: #3D3D3D;
  line-height: 1;
}
#event-list .event-date > span:last-child {
  color: #3D3D3D;
  font-size: 14px;
  font-weight: 500; 
}
#event-list article > a:hover img {
  transform: scale(1.05);
}
#event-list article > a:hover .event-img strong {
  background-color: #01A48D;
}
#event-list article > a:hover .event-body > small {
  color: #000;
}
#event-list article > a:hover .event-body > small svg {
  color: #01A48D;
}
#event-list article > a:hover h2 {
  color:#01A48D;
}
#event-list article > a:hover .event-date-icon {
  background: #FFF;
}
#event-list article > a:hover .event-date-icon small {
  color: #000;
}
#event-list article > a:hover .event-date-icon span {
  color: #01A48D;
}
#event-list article > a:hover .event-date > span:last-child {
  color: #000;
}
.sidebar-event > * {
  flex-basis: 100%;
}