.wrap-news {
  max-width: 1000px;
  margin: 0 auto;
}

.news-list {
  border: solid 1px #e2e0e0;
  border-radius: 6px 6px 6px 6px;
  transition: all 0.2s;
  margin-bottom: 30px;
}
.news-list a {
  color: #00487C;
}
.news-list figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 54%;
}
.news-list figure .img-center a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.news-list figure img {
  max-height: 100%;
  transition: all 0.5s;
  border-radius: 6px 6px 0px 0px;
}
.news-list .news-info {
  padding: 15px;
  position: relative;
}
.news-list .news-info .news-date {
  position: absolute;
  top: -60px;
  padding: 15px 30px;
  border-radius: 100%;
  text-align: center;
  background: #565454;
  font-size: 26px;
  color: #fff;
  font-weight: 700;
  transition: all 0.5s;
}
.news-list .news-info .news-date small {
  font-size: 15px;
  text-transform: capitalize;
}
.news-list .news-info .news-date small:before {
  content: "";
  display: block;
  border-top: 1px solid #fff;
}
.news-list .news-info .news-title {
  margin-top: 27px;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #03a9f4;
  font-weight: 600;
}
.news-list .news-info .news-title a:hover {
  color: #027bce;
}
.news-list .news-info .news-text {
  margin: 10px 0;
  font-size: 0.9rem;
  font-weight: 200;
  line-height: 1.5rem;
  color: #333;
}
.news-list:hover {
  transform: scale(0.98);
  box-shadow: 0px 5px 6px 0px rgba(0, 0, 0, 0.1);
}
.news-list:hover .news-info .news-date {
  background: #00487C;
}
.news-list:hover figure img {
  opacity: 0.7;
}

.news-btnbox {
  text-align: center;
  margin-top: 16px;
}

.news-btn {
  display: inline-block;
  padding: 10px 25px;
  font-weight: 200;
  color: #333;
  background-color: #fff;
  border: solid 1px #adadad;
  border-radius: 3px;
  transition: all 0.5s;
}
.news-btn:hover {
  background: #00487C;
  color: #fff;
  border: solid 1px #00487C;
}

/* News Detail ============================================================== */
.wrap-news-detail {
  margin: 0 auto;
  max-width: 1024px;
  font-size: 0.9rem;
  line-height: 2rem;
}
.wrap-news-detail a:hover {
  color: #027bce;
}
.wrap-news-detail ul, .wrap-news-detail ol {
  padding-left: 20px;
}