.blog__filter__wrapper {
	margin-top: 1.5rem;
	gap: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.blog__filter {
	display: inline-flex;
	height: 2.75rem;
	padding: 0.75rem 1rem;
	justify-content: center;
	align-items: center;
	border-radius: 0.5rem;
	background: #fff;
	box-shadow: 0px 3px 40px 1px rgba(214, 214, 221, 0.4);

	color: #727272;
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 700;
	line-height: 120%; /* 1.05rem */
	letter-spacing: 0.00875rem;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	position: relative;
	border: 3px solid #fff;
}

.blog__filter.active {
	color: #fff;
	border: 3px solid #3ba959;
	background: var(--Green, #0b6836);
}
.blog__filter.active::before {
	content: '';
	position: absolute;
	right: -0.5rem;
	top: -0.5rem;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background: url('/wp-content/uploads/2025/05/Frame-2147259234.svg') no-repeat center center / contain;
}

.section-list-blog {
	padding: 5rem 6.25rem 7.5rem;
}
.list-item {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.5rem;
	margin-top: 3.5rem;
}

.pagination__list {
	margin-top: 3.5rem;
}

/* skeleton card */
.card-loading {
	height: 32rem;
	width: 100%;
	border-radius: 1rem;
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
	background-size: 400% 100%;
	animation: skeleton-loading 1.2s ease-in-out infinite;
}

@keyframes skeleton-loading {
	0% {
		background-position: 100% 0;
	}
	100% {
		background-position: 0 0;
	}
}


@media screen and (max-width: 639.98px) {
	.card-loading {
		height: 24.5rem;
	}

	.section-list-blog {
		padding: 2.5rem 1.25rem;
		padding-bottom:4.5rem
	}

	.list-item {
		display: grid;
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-top: 1.5rem;
	}

	.pagination__list {
		margin-top: 1.5rem;
	}

	.blog__filter {
		height: 2rem;
		padding: 0.625rem;
		font-size: 0.625rem;
		flex: 0 0 auto;
	}
	.blog__filter.active::before {
		right: -0.4rem;
		top: -0.4rem;
		width: 0.875rem;
		height: 0.875rem;
	}
	.section-list-blog .heading-1 {
		width: 14.75rem;
		margin: 0 auto;
		font-size: 2rem;
	}
}
