.news-container {
  background-color: #f9f9f9;
}
.news-container .title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5.208333vw 0;
  line-height: 1;
}
.news-container .title {
  font-size: 2.083333vw;
  color: #222;
}
.news-container .title-translation {
  margin-top: 1em;
  font-size: 1.041667vw;
  font-weight: lighter;
  color: #666;
}

.news-list {
  padding: 0 16.666667vw;
}
.news-item {
  display: flex;
  justify-content: space-between;
  padding: 2.604167vw 0;
  border-bottom: 1px solid #dbdbdb;
}
.news-item:first-child {
  padding-top: 0;
}
.news-item:last-child {
  padding-bottom: 0;
  border-bottom-color: transparent;
}
.news-item > a {
  flex-shrink: 0;
  display: block;
  position: relative;
  width: 20.8333vw;
  height: 12.5vw;
  overflow: hidden;
}
.news-item .news-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease-in-out;
}
.news-item .news-img:hover {
  transform: scale(1.05);
}
.news-item .news-overview {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 2.604167vw;
}
.news-item .news-title {
  font-size: 1.5625vw;
  color: #333;
  line-height: 1;
}
.news-item .news-description {
  margin-top: 1.5625vw;
  font-size: 0.833333vw;
  color: #666;
  line-height: 1.75;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news-item .date-and-more {
  display: flex;
  justify-content: space-between;
  font-size: 0.729167vw;
  color: #666;
  line-height: 1;
}
.news-item .news-more {
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.news-item .news-more:visited,
.news-item .news-more:active {
  color: #666;
}
.news-item .news-more:hover {
  color: #016dbf;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5.208333vw 0;
}
.pagination .pager-list {
  display: flex;
  margin: 0 0.625vw;
}
.page-prev,
.page-next {
  padding: 0;
}
.page-pre,
.page-next,
.pagination .page-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.1875vw;
  height: 2.1875vw;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  font-size: 1.041667vw;
  color: #999;
  line-height: 1;
  user-select: none;
  cursor: pointer;
}
.pagination .page-num:not(:last-child) {
  margin-right: 0.625vw;
}
.pagination .page-num:hover {
  color: #016dbf;
}
.pagination .page-num.page-num-current {
  background-color: #016dbf;
  border-color: #016dbf;
  color: #fff;
}
.news-date-mobile,
.news-more-mobile {
  display: none;
}

@media (max-width: 768px) {
  .news-container .title-wrapper {
    padding: 2rem 0 1.5rem;
  }
  .news-container .title {
    font-size:1.2rem;
  }
  .news-container .title-translation {
    margin-top: 1em;
    font-size: .8rem;
  }

  .news-list {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }
  .news-item {
    flex-direction: column;
    padding: 1.5rem 0;
  }
  .news-item > a {
    width: 100%;
    height: 8rem;
  }
  .news-item .news-overview {
    margin-top: 1.5rem;
    padding-left: 0;
  }
  .news-item .news-title {
    font-size: .9rem;
    line-height: 1.3;
  }
  .news-item .news-description {
    margin-top: 0.7rem;
    font-size: .8rem;
    line-height: 1.5;
    -webkit-line-clamp: 3;
  }
  .news-item .date-and-more {
    display: none;
  }
  .news-item .news-date-mobile,
  .news-item .news-more-mobile {
    display: block;
    color: #666;
    font-size: .7rem;
  }
  .news-date-mobile {
    margin-bottom: 1em;
  }
  .news-item .news-more-mobile {
    margin-top: 1em;
  }
  .pagination {
    padding: 1.5rem 0;
  }
  .page-pre, .page-next, .pagination .page-num {
    width: 1.2rem;
    height: 1.2rem;
    font-size: .7rem;
  }
  .pagination .pager-list {
    margin: 0 .4rem;
  }
  .pagination .page-num:not(:last-child) {
    margin-right: .4rem;
  }
}
