.breadcrumb {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    margin: 0 0 64px 19px;
  }
}

.block {
  padding: 20px 0 70px;
}
@media screen and (min-width: 768px) {
  .block {
    padding: 70px 0 85px;
  }
}

.list-post {
  margin: 50px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
}
@media screen and (max-width: 767px) {
  .list-post {
    justify-content: center;
  }
}
.list-post .item {
  width: 310px;
  max-width: 100%;
}
.list-post .item .img {
  height: 230px;
  overflow: hidden;
  border-radius: 5px;
}
.list-post .item .img img {
  transition: all 0.3s;
  opacity: 1;
}
.list-post .item .post-name {
  margin: 14px 0 0;
  color: var(--color);
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0;
  max-height: 84px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .list-post {
    gap: 86px 35px;
  }
  .list-post .item {
    width: calc((100% - 70px) / 3);
  }
  .list-post .item a {
    text-decoration: none;
  }
  .list-post .item a:hover .img img {
    transform: scale(1.2);
  }
  .list-post .item a:hover .post-name {
    text-decoration: underline;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0 0;
}
@media screen and (min-width: 768px) {
  .pagination {
    gap: 36px;
    margin: 91px 0 0;
  }
}
.pagination li {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.pagination li.active {
  color: var(--color);
}
.pagination li.prev {
  margin-right: 18px;
}
.pagination li.prev span {
  display: block;
  line-height: 0;
}
.pagination li.prev span::before {
  content: "";
  background: url("../img/list/prev.png") no-repeat center/100% auto;
  width: 15px;
  height: 11px;
  display: block;
}
.pagination li.prev span:hover {
  opacity: 0.8;
}
.pagination li.next {
  margin-left: 18px;
}
.pagination li.next span {
  display: block;
  line-height: 0;
}
.pagination li.next span::before {
  content: "";
  background: url("../img/list/next.png") no-repeat center/100% auto;
  width: 16px;
  height: 12px;
  display: block;
}
.pagination li.next span:hover {
  opacity: 0.8;
}