.news-outer-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .news-outer-wrap {
    margin: 0;
  }
}
.news-outer-wrap * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.news-outer-wrap .news-item {
  width: calc(33.333% - 20px);
  margin: 0 10px 10px;
  box-shadow: 0px 0px 0px 1px rgba(232, 47, 39, 0.3);
  display: flex;
  padding: 10px;
}
@media (max-width: 768px) {
  .news-outer-wrap .news-item {
    width: 100%;
    margin: 0 0 10px;
  }
}
@media (max-width: 520px) {
  .news-outer-wrap .news-item {
    flex-direction: column;
  }
}
.news-outer-wrap .news-item .image-wr {
  display: flex;
  flex-direction: column;
  padding: 0 8px 32px;
}
@media (max-width: 520px) {
  .news-outer-wrap .news-item .image-wr {
    padding-bottom: 10px;
  }
}
.news-outer-wrap .news-item .image-wr .news-date {
  display: block;
  background: #d4c1a5;
  padding: 12px 4px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.news-outer-wrap .news-item .image-wr .n-thumb {
  float: none;
  margin: 0;
}
.news-outer-wrap .news-item .news-info {
  display: flex;
  flex-direction: column;
  padding: 0 16px 32px;
}
.news-outer-wrap .news-item .news-info > a {
  font-size: 15px;
  font-weight: bold;
  color: #222;
}
.news-outer-wrap .news-item .news-info > a:hover {
  color: #e82f27;
}
.news-outer-wrap .news-item .news-info .news-btn-wr {
  margin-top: 5px;
}
.news-outer-wrap .news-item .news-info .news-btn-wr a {
  display: inline-block;
  border: 1px solid rgba(232, 47, 39, 0.4);
  border-radius: 4px;
  padding: 8px;
  text-align: center;
  text-decoration: underline;
  color: cadetblue;
  margin-top: 4px;
  color: #e82f27;
  text-decoration: none;
}
.news-outer-wrap .news-item:hover {
  box-shadow: 0 0 27px 0 rgba(0, 0, 0, 0.1);
}
