.section__posts {
	position: relative;
	padding: 13.3rem 8.61% 0 24.44%;
}

.list__posts {
	position: relative;
	margin-top: 9.3rem;
}

.list__posts .item__post:first-child {
	padding-top: 0;
}

.pagination-link ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 0 0;
	margin: 0;
}

.pagination-link ul li,
.pagination li.page-item .page-link {
	position: relative;
	display: inline-flex;
	margin: 3px;
	background: #FFF;
	color: black;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	line-height: 30px;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	border: none;
}

.pagination-link ul li.prev:before,
.pagination-link ul li.next:before {
	content: "";
	position: absolute;
	inset: 0.5rem;
	width: 2rem;
	height: 2rem;
	background-image: url('data:image/svg+xml;utf8,<svg stroke="currentColor" fill="none" stroke-width="0" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.81809 4.18179C8.99383 4.35753 8.99383 4.64245 8.81809 4.81819L6.13629 7.49999L8.81809 10.1818C8.99383 10.3575 8.99383 10.6424 8.81809 10.8182C8.64236 10.9939 8.35743 10.9939 8.1817 10.8182L5.1817 7.81819C5.09731 7.73379 5.0499 7.61933 5.0499 7.49999C5.0499 7.38064 5.09731 7.26618 5.1817 7.18179L8.1817 4.18179C8.35743 4.00605 8.64236 4.00605 8.81809 4.18179Z" fill="currentColor"></path></svg>');
}

.pagination-link ul li.next:before {
	transform: rotate(180deg);
}

.pagination-link ul li.active:hover,
.pagination li.page-item:hover .page-link {
	cursor: pointer;
	background: var(--color-yellow);
	color: white;
}

.pagination-link ul li.inactive {
	background: #7E7E7E;
	display: none;
}

.pagination-link ul li.selected,
.pagination li.page-item.active .page-link {
	background: linear-gradient(94.28deg, rgba(255, 213, 0, 0.8) 0.24%, rgba(255, 213, 1, 0.6) 99.76%);
	color: white;
}

.pagination-link ul li i {
	font-size: 10px;
	line-height: 30px;
}

.wrap__list-categories {
  position: absolute;
  top: 0;
  left: 12.4rem;
  z-index: 2;
  padding-top: 13.3rem;
}

.wrap__list-categories .list__categories {
  list-style: none;
  padding-left: 0;
  margin-block: 0;
}

.wrap__list-categories .list__categories .item__category {
  position: relative;
  display: block;
  font-size: 1.4rem;
  line-height: 1.7rem;
  font-weight: 330;
  margin-bottom: 1.9rem;
}

.wrap__list-categories .list__categories .item__category:last-child {
  margin-bottom: 0;
}

.wrap__list-categories .list__categories .item__category.item__category-active:before {
  content: "";
  position: absolute;
  top: 0;
  left: -3rem;
  width: 1.4rem;
  height: 1.4rem;
  background-color: var(--color-yellow);
}

@media screen and (min-width: 1024px) and (max-width: 1200px) {
	.section__posts {
		padding-right: 5.6rem;
	}
}

@media screen and (max-width: 1280px) {
  .wrap__list-categories {
    left: 8.5rem;
  }
}

@media screen and (max-width: 1023px) {
	.section__posts {
		position: relative;
		padding: 7.5rem 2.2rem 0;
	}

	.wrap__list-categories {
		display: none;
	}
}

