.news-item {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 160px;
}
.news-item:before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 0;
  left: 0;
  width: 0;
  background: #f6f6f6;
  -moz-transition: width 0.6s;
  -o-transition: width 0.6s;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}
.news-item.show:before {
  width: 100%;
}
.news-item:nth-child(even) {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.news-item:nth-child(even):before {
  background: none;
  border: #ddd solid 1px;
}
.news-item:nth-child(even) .news-date {
  background: #eee;
}
.news-item:last-child {
  margin-bottom: 0;
}
.news-item:hover .news-img img {
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.news-img {
  position: relative;
  top: -40px;
  width: 360px;
  margin: 0 40px 40px;
  overflow: hidden;
  opacity: 0;
  -moz-transition: top 0.6s, opacity 0.6s;
  -o-transition: top 0.6s, opacity 0.6s;
  -webkit-transition: top 0.6s, opacity 0.6s;
  transition: top 0.6s, opacity 0.6s;
}
.show .news-img {
  top: 0;
  opacity: 1;
  -moz-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.news-img img {
  width: 100%;
  -moz-transition: -moz-transform 1s;
  -o-transition: -o-transform 1s;
  -webkit-transition: -webkit-transform 1s;
  transition: transform 1s;
}
.news-content {
  position: relative;
  width: calc(80% - 440px);
  margin: 40px 10% 0;
  opacity: 0;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.show .news-content {
  opacity: 1;
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.news-title {
  color: #000;
}
.news-date {
  font-size: 0.75rem;
  background: #ddd;
  border-radius: 2px;
  width: fit-content;
  padding: 2px 5px;
  margin-top: 10px;
  color: #666;
}

@media screen and (max-width: 1100px) {
  .news-item {
    margin-bottom: 120px;
  }
  .news-content {
    width: calc(90% - 440px);
    margin: 40px 5% 0;
  }
  .news-title {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 800px) {
  .news-item {
    display: block;
    margin-bottom: 80px;
  }
  .news-item:before {
    bottom: 0;
    top: 35vw;
  }
  .news-img {
    width: auto;
    margin: 0 40px;
  }
  .news-content {
    width: auto;
    margin: 0;
    padding: 40px;
  }
}
@media screen and (max-width: 640px) {
  .news-item {
    margin-bottom: 40px;
  }
  .news-img {
    margin: 0 10px;
  }
  .news-content {
    padding: 20px;
  }
}
