.eras-category-posts {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 20px;
    row-gap: 20px;
}

.eras-category-posts .post-item {
    padding: 10px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.eras-category-posts .post-item .post-meta {
    padding: 20px 20px 60px 20px;
    position: relative;
}

.eras-category-posts .post-item .post-thumbnail img {
    border-radius: 15px;
}

.eras-category-posts .post-excerpt p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}
.eras-category-posts .post-excerpt {
    margin-bottom: 20px;
}

.eras-category-posts h2.post-title  {
    font-size: 18px;
    color: #000;
}
.eras-category-posts .post-item .read-more {
    background: #F7931D;
    display: block;
    padding: 10px;
    border-radius: 50px;
    border: 2px solid #F7931D;
    transition: 0.3s;
    position: absolute;
    width: calc(100% - 40px);
    bottom: 15px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    
}
.eras-category-posts .post-item .read-more:hover {
    background-color: #fff;
    color: #F7931D ;
}
.eras-category-posts .post-item .read-more:hover::after {
    transform: translateX(100%);
}
.eras-category-posts .post-item .read-more::after {
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    right: 4px;
    top: 3px;
    padding: 7px 12px;
    background: #fff;
    color: #F7931D !important;
    border-radius: 50%;
    transition: 0.3s;
    font-weight: 900;

}
