/* custom-post-list-styles.css */
.custom-post-list {
  list-style: none;
  padding: 0;
}

.custom-post-list li {
  margin-bottom: 20px;
}

.custom-post-list img {
  max-width: 100%;
  height: auto;
}

.post-date {
  display: block;
  font-size: 15px;
  color: #888;
}

.blog-index {
    display: flex;
    flex-wrap: wrap;
}
.blog-index .post-item {
padding: 15px;
    border: 1px Solid #d7d7d7;
    background-color: #fff;
    float: left;
    width: 44%;
    margin: 1%;
}
}
.blog-index .post-body {
    width: 100%;
}
.blog-index .blog-featured-img img{
    object-fit: cover;
    object-position: bottom;
}

.post-heading h2{
margin: 15px 0px !important;
}
.post-heading h2 a {
    color: #333 !important;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    line-height: 28px;
    letter-spacing: 1px;
}

.more-link{
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    background-color: #FF671F;
    border-radius: 4px ;
    color: #ffffff ;
    fill: #ffffff ;
    font-size: 12px;
    line-height: 22px;
    padding: 7px 20px ;
    margin-top: 10px;
    cursor: pointer;
}


.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 24px;
}
.blog-pagination .page-numbers {
	background-color: #f6f6f6;
    border-radius: 50%;
    cursor: pointer;
    display: -webkit-inline-box;
    padding: 15px 20px;
    margin: 0 10px 0px 0;
}
.user-meta-section {
    display: flex;
    gap: 15px;
}
span.post-author {
    text-transform: capitalize;
    font-size: 15px;
    color: #888;
}



@media only screen and (max-width: 640px) {

.blog-index .post-item {
    padding: 15px;
    border: 1px Solid #d7d7d7;
    background-color: #fff;
    float: none;
    width: 100%;
    margin: 4% 1%;
}
.blog-pagination{
    flex-wrap: wrap;
}


}
