/* Post Layout Styles */
.post_article {
	height: 100%;
}

.post-wrapper {
	position: relative; display: block;
	text-decoration: none; color: inherit;
	height: 100%;
}


.post-wrapper .post-image {
	position: relative; z-index: 1;
}

.post-wrapper .post-image img {
	width: 100%; aspect-ratio: 5/6; object-fit: cover; display: block;
}

.post-wrapper .post-content {
	position: absolute; bottom: 0; left: 0; z-index: 3;
	width: 100%; color: var(--pk-heading-color);
	padding: max(1rem, calc(.5 * var(--su)));
	height: 100%; 
}

.post-wrapper .post-content .read-more {
	display: flex; align-items: center; gap: 0.5rem;
}
.post-wrapper{
	border-radius: 10px; overflow: clip;
	border: 1px solid rgba(255, 255, 255, 0.2);
	z-index: 0;
	position: relative; cursor: pointer;
}

.post-wrapper::after{
	content: '';
	position: absolute; inset: 0;
	width: auto; height: auto; display: inline-block;
	background-color: rgba(0, 0, 0, .2);
	pointer-events: none; z-index: 1;

}

.post-content .term-list{
	display: flex; flex-wrap: wrap; gap: 0.5rem;
}

/* .post-slider .post-content .term-list{
	position: absolute; top: 1rem; left: 1rem; z-index: 2;
}  */
.post-content .term-list .term-item{
	padding: calc(.7 * var(--su)) calc(1.2 * var(--su));
	background-color: rgba(255, 255, 255, 0.05);
	color: var(--pk-heading-color); border-radius: 50px;
	font-size: clamp(16px, calc(0.875 * var(--su)), 18px);
	text-transform: uppercase; font-weight: 400; line-height: 1;
	backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
}

@media screen and (max-width: 767px) {
    .post-content .term-list .term-item {
        padding: calc(1 * var(--su)) calc(1.5 * var(--su));
    }
}