.news-container {
  width: 100%;
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-list-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: .0625rem solid rgb(231, 231, 231);
  padding-bottom: 1rem;
  padding-top: 1rem;
  cursor: pointer;
  margin-bottom: 1rem;
}

.news-list-item-title {
  flex: 1;
  font-size: .875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 1rem;
}

.news-list-item-date {
  font-size: .875rem;
}

.news-list-item:hover .news-list-item-title {
  transform: all .3s;
  color: #0072b8;
}

.news-pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 3rem;
}

.news-pagination > div {
  font-size: .75rem;
  padding-left: .75rem;
  padding-right: .75rem;
  padding-top: .375rem;
  padding-bottom: .375rem;
  background-color: rgb(231, 231, 231);
  cursor: pointer;
}

.news-pagination > div:not(:last-child) {
  margin-right: .5rem;
}

.news-pagination > div:hover {
  transition: all .3s;
  color: white;
  background-color: #0072b8;
}

.news-pagination-item-active {
  color: white;
  background-color: #0072b8 !important;
}

@media screen and (max-width: 1920px) {
  .news-list-item {
    border-bottom: 1px solid rgb(231, 231, 231);
    padding-bottom: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
  }
  
  .news-list-item-title {
    font-size: 16px;
    padding-right: 20px;
  }
  
  .news-list-item-date {
    font-size: 16px;
  }
  
  .news-pagination {
    margin-top: 50px;
  }
  
  .news-pagination > div {
    font-size: 14px;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  
  .news-pagination > div:not(:last-child) {
    margin-right: 10px;
  }
}

@media screen and (max-width: 888px) {
  .news-pagination {
    justify-content: center;
    align-items: center;
  }
}

.news-pub-container {
  width: 100%;
}

.news-pub-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.news-pub-list-item {
  width: 30%;
  margin: 1.5%;
  border: .0625rem solid rgb(231, 231, 231);
  cursor: pointer;
}

.news-pub-list-item:hover > .news-pub-list-item-img > img {
  transition: all .6s;
  transform: scale(1.1);
}

.news-pub-list-item:hover {
  transition: all .6s;
  border: .0625rem solid #0179c4;
}

.news-pub-list-item-img {
  width: 100%;
  height: 11.5rem;
  overflow: hidden;
}

.news-pub-list-item-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-pub-list-item-text {
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding-left: 1rem;
  color: #0072b8;
}

@media screen and (max-width: 1920px) {
  .news-pub-list-item {
    border: 1px solid rgb(231, 231, 231);
  }
  
  .news-pub-list-item:hover {
    border: 1px solid #0179c4;
  }
  
  .news-pub-list-item-img {
    height: 220px;
  }
  
  .news-pub-list-item-text {
    margin-top: 16px;
    margin-bottom: 30px;
    padding-left: 16px;
  }
}

@media screen and (max-width: 1600px) {
  .news-pub-list-item {
    width: 46%;
  }
}

@media screen and (max-width: 666px) {
  .news-pub-list-item {
    width: 100%;
    margin: 0;
    margin-bottom: 30px;
  }
}

.news-detail-container {
  width: 70%;
  padding-left: 15%;
  padding-right: 15%;
  margin-top: 3rem;
}

.news-detail-title {
  text-align: center;
  font-size: 1.125rem;
  color: #0066cb;
  letter-spacing: .0625rem;
  font-weight: bold;
  margin-bottom: .5rem;
}

.news-detail-date-and-views {
  font-size: .6875rem;
  color: #666;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: .0625rem solid rgb(231, 231, 231);
}

.news-detail-date {
  margin-right: 2rem;
}

.news-detail-content {
  margin-top: 3rem;
  margin-bottom: 3rem;
}



.news-pub-detail-container {
  width: 100%;
  margin-top: 3rem;
}

.news-pub-detail-intro {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}

.news-pub-detail-intro-img {
  width: 48%;
}

.news-pub-detail-intro-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-pub-detail-intro-text {
  width: 48%;
  font-size: .8125rem;
}

.news-pub-detail-files {
  width: 100%;
  margin-top: 2rem;
}

.news-pub-detail-files-title {
  background-color: rgb(242, 242, 242);
  padding: .5rem;
  font-size: .875rem;
  color: #0072b8;
  margin-bottom: 2rem;
}

.news-pub-detail-file {
  font-size: .75rem;
  color: #0072b8;
  border-bottom: .0625rem solid rgb(231, 231, 231);
  cursor: pointer;
  margin-bottom: .25rem;
}

.news-pub-detail-file:hover {
  border-bottom: .0625rem solid #0072b8;
}


@media screen and (max-width: 1920px) {
  .news-pub-detail-container {
    margin-top: 50px;
  }
  
  .news-pub-detail-intro-text {
    font-size: 14px;
  }
  
  .news-pub-detail-files {
    margin-top: 30px;
  }
  
  .news-pub-detail-files-title {
    padding: 10px;
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .news-pub-detail-file {
    font-size: 14px;
    border-bottom: 1px solid rgb(231, 231, 231);
    margin-bottom: 6px;
  }
  
  .news-pub-detail-file:hover {
    border-bottom: 1px solid #0072b8;
  }  
}
@media screen and (max-width: 996px) {
  
  .news-pub-detail-intro {
    flex-wrap: wrap;
  }
  
  .news-pub-detail-intro-img {
    width: 100%;
  }
  
  .news-pub-detail-intro-text {
    width: 100%;
    margin-top: 20px;
  }
}