.post-layout{
	display: flex;
	gap: 24px;
	flex-wrap: wrap;

}
.post-layout .post-item{
/*text-align: center;*/
/*	font-size: 13px;*/
}
.post-layout .post-item{
	width: calc(32% - 46px);
	background-color: #492B75;
}

@media (max-width: 1024px) {
	.post-layout .post-item{
width: 100%
	}
}

.post-item{
	display: flex;
	padding: 15px;
	/*border: 1px solid #e6e6e6;*/
	align-items: center;
	justify-content: center;
}
.readmore-button{
	color: white;
	transition: 0.3s;
}
.readmore-button:hover{
	color: #FFD700;
}
.post-text{
	width: 100%;
	display: flex;
	flex-direction: column;

}



@media (max-width: 641px) {
	.post-item{
		flex-direction: column-reverse;
	}
	.post-item>div{
		width: 100%;
	}
}

.pagination{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	list-style: none;
	gap: 10px;
	width: 100%;
}
.pagination li{
display: flex;
}
.pagination li span,.pagination li a{
	display: block;
	color: white;
	text-decoration: none;
	background-color: #492B75;
	padding: 0px 10px;
	transition: 0.3s;
}

.pagination li a:hover{
background-color: #1f1f1f;
}
.pagination li span.current{
	color:#FFD700;
}
.pagination li:has(span.dots){
	display: none!important;
}


.category-list{
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	gap: 10px;
}
.category-list li a{
	padding: 10px;
	background-color: #f1f1f1;
	text-decoration: none;
	display: block;
	transition: 0.3s;
}
.category-list li a:hover{
	color: white;
	background-color: #492B75;
}


.post-title{
	display: block;
	text-decoration: none;
	margin: 24px 0px 12px 0px;
}
.post-excerpt{

}
.post-date{
	color: #500778;
	font-size: 20px;
}