/* news-list */
.news-list .post-item {
  display: flex;
  justify-content: space-between;
}
.news-list .post-item .post-thumbnail {
  width: 25%;
}
.news-list .post-item .post-thumbnail img {
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  aspect-ratio: 16 / 9;
}
.news-list .post-item .post-body {
  width: 72%;
}
.pagination {
  display: flex;
}
.pagination .page-numbers {
  color: #fff;
  background: #0E3049;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-left: 5px;
  margin-right: 5px;
}
.pagination .page-numbers:hover {
  color: #fff;
}
.pagination .page-numbers.current {
  color: #0E3049;
  background: rgba(0, 0, 0, 0.05); 
}
.pagination .page-numbers.dots {
  color: #0E3049;
  background: #fff;
}
.pagination-wrapper {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}


/* news-details */
.news-details {
  width: 90%;
  max-width: 600px;
  margin: auto;
}
.post-title {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 2rem;
}
.post-content p {
  font-size: 1rem;
  font-weight: normal;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.news-details .post-attr {
  margin: 1rem auto;
}
.post-content {
  margin-bottom: 2rem;
}


@media (max-width: 767px){
  .news-list .new-info {
    width: 90%;
  }
}

