/* Posts Filter */

@media screen and (min-width: 50rem) {
	.project-filter__wrapper {
		display: flex;
		justify-content: space-between;
		padding-bottom: 2rem;
	}

	.project-filter__list {
		display: flex;
		gap: 2rem;
	}

	.project-filter__link {
		font-size: var(--p-size);
		line-height: var(--p-line-height);
		font-weight: 300;
		text-decoration: none;
	}

	.project-filter__reset {
		font-size: var(--p-size);
		line-height: var(--p-line-height);
		font-weight: 400;
		text-decoration: none;
	}

	.pagination__next {
		visibility: hidden;
}

}

@media screen and (min-width: 28rem) and (max-width: 50rem) {
	.section__content--project-filter {
		display: none;
	}
}

@media screen and (max-width: 28rem) {
	.section__content--project-filter {
		display: none;
	}
}