.ActivityListItem {
  position: relative;
  background-color: #999;
  box-shadow: 0 0 7px rgba(158, 165, 171, 0.7);
  padding: 0 0 calc(65px + 37%);
  overflow: hidden;
  margin-bottom: 2em;
}
.ActivityListItem a {
  color: inherit;
  text-decoration: none;
}

.ActivityListItem__photo {
  position: absolute;
  width: 100%;
}
.ActivityListItem__photo__img {
  width: 100%;
  height: auto;
}

.ActivityListItem__overlay {
  position: absolute;
  bottom: 0;
  background-color: #fff;
  padding: 1.5em 1.5em 1em;
  box-sizing: border-box;
  width: 100%;
}
.ActivityListItem__overlay__title {
  position: absolute;
  bottom: 2.6em;
  text-shadow: 0 0 4px #43525f;
  color: #fff;
  margin: 0;
  transition: opacity .2s ease-in;
}
.ActivityListItem:hover .ActivityListItem__overlay__title {
  opacity: 0;
}
.ActivityListItem__overlay__datetag {
  position: absolute;
  top: -10px;
  right: 25px;
  line-height: 1.6em;
  background-color: #4F8B24;
  text-align: center;
  padding: .8em 1.5em;
  font-weight: bold;
  color: #fff;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
}
.ActivityListItem__overlay__datetag__day {
  font-size: 1.7em;
  font-weight: bold;
  color: #fff;
}
.ActivityListItem__overlay__datetag::before {
  top: 3px;
  transform: rotate(45deg);
  right: -6px;
  display: block;
  position: absolute;
  content: '';
  border-width: 7px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}
.ActivityListItem__overlay__date {
  font-size: .9em;
  line-height: 1.8em;
  margin: .5em 0;
}
.ActivityListItem__overlay__date:before {
  float: left;
  font-family: 'ardoer';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6em;
  content: "\e802";
  margin-right: .3em;
}
.ActivityListItem__overlay__description {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s ease-in;
}
.ActivityListItem:hover .ActivityListItem__overlay__description {
  max-height: 12.4em; /* 3x 1.4em */
}
.ActivityListItem__overlay__description p {
  margin: 0;
}