.news-container {
  width: 1200px;
  background-color: #fff;
  padding: 15px 0px;
  margin: auto;
  margin-bottom: 10px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, .3);
}

.news-box {
  display: flex;
  flex-direction: column;
  padding: 20px 100px;
  border-bottom: 1px solid #e6e6e6;
  color: #666;
  transition: all .3s;
}

.news-box h3 {
  transition: all .3s;
  font-size: 22px;
  color: #000;

}

.news-box p {
  line-height: 23px;
  margin: 15px 0;
  letter-spacing: 0.5px;
}


.news-box span {
  text-align: right;
  margin-top: 28px;
}

.news-box:hover {
  transition: all .3s;
  background: #1b1f25;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, .3);
}

.news-box:hover h3 {
  transition: all .3s;
  color: #fff;
}
