.news_listing .section-title {
  margin-bottom: 2rem;
}
.news_listing .categories {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.news_listing .categories a {
  margin: 0.5rem;
  color: #888;
}
.news_listing .categories a.current {
  font-weight: 700;
  color: #00348D;
}
.news_listing .listing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.news_listing .listing .post {
  width: 40%;
  display: flex;
  flex-direction: column;
  margin: 3rem;
}
.news_listing .listing .post:hover .image::before {
  opacity: 1;
  color: #fff;
}
.news_listing .listing .post .image {
  position: relative;
  width: 30rem;
  height: 30rem;
  border-radius: 35px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-position: center !important;
  background-size: cover !important;
}
.news_listing .listing .post .image::before {
  content: "+";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  font-size: 4rem;
  font-weight: 100;
  color: transparent;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, rgba(17, 18, 47, 0.8) 48%, rgba(0, 30, 98, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease, color 1s ease;
}
.news_listing .listing .post .date {
  font-size: 1rem;
  font-weight: 400;
  color: #006fb4;
  margin-bottom: 1rem;
}
.news_listing .listing .post .title {
  font-family: 'Aleo';
  font-size: 1.6rem;
  line-height: 2rem;
  color: #00348D;
  font-weight: 600;
  margin-bottom: 1rem;
}
.news_listing .listing .post .exerpt {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
}
.news_listing .listing .post .link {
  margin-top: 1rem;
  color: #006fb4;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.news_listing .listing .post .link i {
  font-size: 0.7rem;
  margin-left: 2px;
}
@media only screen and (max-width: 900px) {
  .news_listing .listing .post {
    width: 100%;
    margin: 0 0 3rem;
    align-items: center;
    text-align: center;
  }
  .news_listing .listing .post .image {
    width: 92vw;
    height: 92vw;
    max-width: 500px;
    max-height: 500px;
  }
}
.news_listing .pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.news_listing .pagination .page-numbers {
  margin: 0.5rem;
  color: #888;
}
.news_listing .pagination .page-numbers.current {
  font-weight: 500;
  color: #333;
}
.news_listing .pagination .page-numbers span {
  color: #006fb4;
  font-weight: 600;
}
.news_listing .pagination .page-numbers span.next {
  margin-left: 1rem;
}
.news_listing .pagination .page-numbers span.prev {
  margin-right: 1rem;
}
