.post-contant {
  display: flex;
  gap: 60px;
  margin-top: 43px;
}

.post-page .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.post-main {
  width: 100%;
}

.post-list {
  width: 100%;
}

.post-item {
  border-bottom: 1px solid #4B5D92;
}

.post-item-link {
  display: block;
  padding: 19px 20px 10px;
  text-decoration: none;
  transition:
    background 0.3s ease;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #4A4A4A;
  transition:
    color 0.3s ease;
}

.post-category {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: #4B5D92;
  color: #fff89F;
  font-weight: 500;
  line-height: 1;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.post-title {
  margin: 0;
  color: #4A4A4A;
  font-size: 16px;
  font-weight: normal;
  line-height: 2.125;
  letter-spacing: 0.1em;
  transition:
    color 0.3s ease;
}

.post-item-link:hover {
  background-color: #FFF1F2;
}

.post-item-link:hover .post-meta {
  color: #4B5D92;
}

.post-item-link:hover .post-category {
  background-color: #FFF;
  color: #4B5D92;
}

.post-item-link:hover .post-title {
  color: #4B5D92;
}

.no-post {
  text-align: center;
  padding: 40px 0;
}

.pagination {
  margin-top: 40px;
}

.pagination .page-numbers {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
}

.pagination .page-numbers li {
  margin: 0;
}

.pagination .page-numbers a,
.pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #EDEDED;
  color: #4B5D92;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.pagination .page-numbers .current {
  background: #4B5D92;
  color: #fff;
}

.pagination .page-numbers a:hover {
  background: #F88A95;
  color: #fff;
}

@media screen and (max-width: 1439px) {

}

@media screen and (max-width: 1023px) {
  .post-contant {
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  
  .post-contant {
    gap: 89px;
    margin-top: 26px;
    flex-wrap: wrap;
  }

  .post-item-link {
    display: block;
    padding: 19px 0px 10px;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
}