.NewsListItem {
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 7px rgba(158, 165, 171, 0.7);
  padding: 0;
  margin-bottom: 2em;
}

.NewsListItem__photo {
  position: relative;
  float: left;
  width: 50%;
  height: 0;
  padding-bottom: 50%;
  overflow: hidden;
  margin: 0 1em 0 0;
}
.NewsListItem__photo__img {
  position: absolute;
  width: 100%;
  height: auto;
}

.NewsListItem__overlay__datetag {
  position: absolute;
  left: -10px;
  top: 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;
}
.NewsListItem__overlay__datetag__day {
  font-size: 1.7em;
  font-weight: bold;
  color: #fff;
}
.NewsListItem__overlay__datetag::before {
  left: 3px;
  transform: rotate(-135deg);
  bottom: -7px;
  display: block;
  position: absolute;
  content: '';
  border-width: 7px;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
}

.NewsListItem__content {
  /*overflow: hidden;
  height: 0;
  padding: 0 1em 50% 0;*/
  padding: 0 1em;
}
.NewsListItem__content__link {
  /*color: inherit;*/
  text-decoration: none;
}
.NewsListItem__content__link--button {
  display: inline-block;
  margin: 10px 0 5px;
  color: inherit;
  padding: .3em .6em;
}
.NewsListItem__content__title {
  margin: 5px 0;
  font-size: 1.4em;
}
.NewsListItem__content__description {
  font-size: .85em;
  line-height: 1.8em;
  color: #43525f;
}



@media (min-width: 992px) {
  .NewsListItem__content__title {
    font-size: 1.7em;
  }
}



@media (max-width: 767px) {
  .NewsListItem__content__title {
    font-size: 1.7em;
  }
}



@media (max-width: 550px) {
  .NewsListItem__photo {
    float: none;
    width: 100%;
    margin: 0 0 1em 0;
  }
  .NewsListItem__content {
    overflow: visible;
    height: auto;
    padding: 0 1em 1em;
  }
}