#news-detail {
  padding: 20px 0;
}
#news-detail img.cover {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  filter: grayscale(100%);
}

#recent {
  margin-top: 80px;
}
#recent h1 {
  margin-bottom: 10px !important;
  display: flex;
}
#recent h1 a {
  display: inline-block;
  font-size: 16px;
  font-weight: 200;
  margin-left: auto;
  margin-top: 30px;
}
#recent h1 a .icon {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}

#blue-angle {
  background: linear-gradient(to right, #00aad4, #162734);
  width: 130%;
  height: 250vh;
  position: absolute;
  z-index: 10;
  transform: rotate(20deg);
  left: 80%;
  opacity: 0.8;
}

#news {
  position: relative;
  margin-top: 60px;
  margin-left: -12px;
}
#news a:hover {
  text-decoration: none;
}
#news .list-label {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background: linear-gradient(to right, #e8e8e8, #f4f4f4);
  position: absolute;
  left: 0;
  width: calc(15% - 24px);
  height: 100%;
  padding: 48px;
  box-sizing: border-box;
}
#news .list-label h2 {
  color: #162734;
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}
#news .column {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
  padding: 0 !important;
  margin-left: 24px;
  width: calc(33% - 24px) !important;
}
@media (max-width: 767px) {
  #news .column {
    width: calc(100% - 2rem) !important;
    margin-bottom: 24px !important;
  }
  #news .column img {
    width: 100%;
  }
}
#news .column img {
  filter: opacity(100%) grayscale(100%);
  display: block;
}
#news .column .is-overlay {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 39, 52, 0.7);
  -webkit-backface-visibility: hidden;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  transition-delay: 0s;
  opacity: 0;
}
#news .column .is-overlay:hover {
  opacity: 1;
}
#news .column .is-overlay:hover ~ .lock {
  transform: rotate(90deg);
  opacity: 1;
}
#news .column .is-overlay:hover ~ .lock .key-one {
  background: #00aad4;
}
#news .column .is-overlay div {
  text-align: center;
  padding: 0 24px;
  position: absolute;
  top: calc(50% - 26px);
  left: 0;
  width: 100%;
}
#news .column .is-overlay div span {
  display: inline-block;
  color: #ffffff;
}
#news .column .lock {
  position: absolute;
  z-index: 11;
  height: 42px;
  width: 42px;
  background-color: #162734;
  border-radius: 100%;
  bottom: 12px;
  right: 12px;
  transition: all 0.5s ease-out;
  padding-top: 7px;
  opacity: 0.6;
}
#news .column .lock .key-one {
  display: inline-block;
  border-radius: 100%;
  background: #fff;
  width: 10px;
  height: 10px;
  margin-left: 9px;
  margin-right: 0;
}
#news .column .lock .key-two {
  display: inline-block;
  border-radius: 100%;
  background: white;
  width: 10px;
  height: 10px;
  margin-left: 4px;
}

#news-nav {
  border-radius: 10px;
  padding: 12px 10px;
  background: #f4f4f4;
  display: inline-block;
}
@media (max-width: 767px) {
  #news-nav {
    flex-direction: row !important;
  }
}
#news-nav a {
  margin: 0 10px;
  font-size: 13px;
  max-width: 50% !important;
}
#news-nav a.disabled {
  color: #ccc !important;
  cursor: default;
}
#news-nav a:hover {
  color: #162734;
  text-decoration: none;
}
