.posts-catalog-wrapper-outer {
    width: 100%;
    margin: 50px auto;
}
.posts-catalog-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.posts-catalog-wrapper-inner {
    padding: 20px;
    border: 1px solid #e04464;
    margin: 10px;
	border-radius: 10px;
	background-color:white;
}
.posts-catalog-wrapper-inner:hover {  
    box-shadow: 2px 2px 5px 1px #b8b8b8;
}
.posts-title {
    margin-top: 20px;
}
.posts-title a {
    font-size: 28px;
    text-decoration: none;
}
.posts-title a:hover {
    color:#e04464;
}
.posts-excerpt {
    margin-top: 30px;
}
.posts-read {
    margin-top: 80px;
}
.posts-read a {
    border: 1px solid;
    padding: 10px 25px;
    text-decoration: none;
}
.posts-read a:hover{
	background-color:#e04464;
	color:white;
}
@media(min-width:701px){
	.posts-row {
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
	}
	.posts-catalog-wrapper {
		width: 33.33%;
	}
}
/*---------------Pagination CSS start---------------------------*/
.pagination-wrapper:after {
    clear: both;
    content: "";
    display: table;
}
.pagination {
    list-style: none;
	display: flex;
	justify-content: center;
}
.pagination a {
    border: 3px solid #e04464;
    padding: 8px 15px;
    background-color: #e04464;
    color: #374a5e;
    border-radius: 5px;
    font-weight: 600;
}
.pagination a:hover{
	background-color: #374a5e;
    color: #e04464;
	text-decoration: none;
}
.page-item {
	padding:0px 10px;
}
.page-item.active a {
	background-color: transparent;
    color: #e04464;
}
.page-item.active a:hover {
    text-decoration: none;
}