


.news-list-view {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.news-list-view .article {
  width: 31%;
  height: 0;
  padding-bottom: 40%;
  display: inline-block;
  margin: 0 1% 30px 0;
  position: relative;
  background-color: #FFF;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.news-list-view .article a {
  display: block;
}
.news-list-view .article .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(160,0,5,0.6);
  color: #FFF;
  padding: 30px 40px;
}
.news-list-view .article .overlay h3 {
  color: #FFF;
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  margin: 0;
}

.news-list-view .article .overlay span {
  font-size: 16px;
}

/*
.news-list-view.carousel {
  overflow-x: scroll;

}
*/
/*
.news-list-view.carousel .inner-news-list {
  width: 5000px;
}
.news-list-view.carousel .article {
  width: 400px;
}
*/



.news .wrap {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  position: relative;
  margin-bottom: 100px;
}
.news .wrap .article:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 40%;
}

.news .wrap .scroller {
  flex: 1;
  overflow: hidden;
}

.news .wrap .items {
  white-space: nowrap;
  font-size: 0;
  line-height: 0;
  transition: transform .5s ease-in-out;
}

.news .wrap .item {
  padding-bottom: 40%;
  display: inline-block;
  width: 31%;
  height: 0;
  font-size: 25px;
  line-height: 1;
  font-weight: bold;
  background-size: cover;
  background-position: 50% 50%;
  border: 1px solid #FFF;
  margin: 0 1% 0 0;
  position: relative;

}

.news .wrap .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 120px;
  color: #FFF;
  background: rgba(160,0,5,0.6);
  padding: 30px 40px;
}




.news .wrap button {
  width: 30px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 40px;
  text-align: center;
  outline: none;
  opacity: 0.5;
  cursor: pointer;
  position: absolute;
  bottom: -50px;
}
.news .wrap button:hover {
  opacity: 1;
}
.news .wrap button.prev {
  right: 100px;
}
.news .wrap button.next {
  right: 60px;
}
