.section__category, .section__fullpage {margin-top: 20px;}
.section__category .col-left-single-news {
  border-radius: 0;
  box-shadow: 0px 1px 0px rgba(67, 67, 67, 0.20);
}
.section__category .col-left-single-news.main-content h1.header-cate {
	color: #fff;
	margin: 0 0 8px 0;
	padding: 10px 15px;
	background-color: var(--main-color);
	border-radius: 4px;
	font-size: 18px;
}

/* ========== LIST POST ========== */
.blog-card {
	display: flex;
	background: var(--white-color);
	border-radius: 0.375rem;
	overflow: hidden;
	margin-bottom: 20px;
	line-height: 2;
	box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px, rgb(60 64 67 / 15%) 0px 2px 6px 2px;
}

.blog-card a {
	color: #000;
	line-height: 25px;
}

.blog-card a:hover {
	color: #000;
}

.blog-card:hover .photo {
	transform: scale(1.3) rotate(3deg);
}

.blog-card .meta {
	position: relative;
	z-index: 0;
	flex-basis: 40%;
}

.blog-card .photo {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.2s;
	width: 100%;
	height: 100%;
	cursor: pointer;
	object-fit: cover;
}

.blog-card .description {
	padding: 2rem;
	background: var(--white-color);
	position: relative;
	flex-basis: 60%;
}

.blog-card .description h2 {
	line-height: 1;
	margin: 0;
	font-size: 20px;
	color: var(--saphire-color);
	font-weight: 600;
}

.blog-card p {
	position: relative;
	margin: 1rem 0 0;
	font-size: 14px;
	text-align: justify;
}

.content__card_mobile {
	display: none;
}

/* ========== PAGINATION ========== */
.post-panigation {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
}

.wp-pagenavi .last,
.wp-pagenavi span.pages {
	display: none;
}

.wp-pagenavi a,
.wp-pagenavi span.current,
.wp-pagenavi span.extend {
	font-weight: 700;
	font-size: 1.7rem !important;
	line-height: 3.2rem;
	display: inline-block;
	padding: 0.2rem 1.3rem !important;
	height: 3.6rem;
	margin: 0.2rem 0.7rem;
	color: var(--black-color) !important;
	transition: all, 0.3s, ease-in-out;
	text-shadow: none !important;
	border: none !important;
	background: none !important;
	box-shadow: none !important;
}

.wp-pagenavi span.current {
	background-color: var(--main-color) !important;
	color: var(--white-color) !important;
}

.wp-pagenavi a:hover {
	background: #d3d3d3 !important;
	cursor: pointer;
}

@media screen and (max-width: 575px) {
	.section__category, .section__fullpage {margin-top: 10px;}
	.category-wrap, .fullpage-wrap {height: 22vh;}

	h1.category__title {
		font-size: 20px;
		margin-top: 15px;
		text-align: center;
	}

	.category__desc {padding: 0;}

	.list-card {margin: 0;}

	.blog-card {
		margin-bottom: 20px;
		flex-direction: column;
	}
	.blog-card p {
		font-size: 13px;
		display: block;
		max-width: 100%;
		height: 60px;
		margin: 0px;
		font-size: 14px;
		line-height: 1;
		line-clamp: 3;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
		line-height: 21px;
	}
	.blog-card a {
		color: inherit;
		line-height: 25px;
		display: block;
		display: -webkit-box;
		max-width: 100%;
		height: 40px;
		margin: 0 auto 5px;
		font-size: 14px;
		line-height: 1;
		line-clamp: 2;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
		line-height: 22px;
	}
	.blog-card .description h2 {
		font-size: 16px;
	}
	.blog-card .meta {
		flex-basis: unset;
		height: 250px;
	}
	.blog-card .description {
		padding: 1.5rem;
	}
	.post-panigation {
		margin-bottom: 20px;
	}

	.wp-pagenavi a,
	.wp-pagenavi span.current,
	.wp-pagenavi span.extend {
		font-size: 1.8rem;
		line-height: 3.2rem;
		padding: 0.2rem 1rem;
		height: 3.5rem;
		margin: 0.2rem;
	}
}