/**** Post Item Grid Layout ****/
.category-filter {
    background-color: #f0f0f0;
    padding: 10px 0;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
}

.category-items {
    display: inline-block;
}

.category-item {
    display: inline-block;
    padding: 5px;
    margin: 0 5px;
    background-color: #fff;
    border-radius: 10px;
    text-decoration: none;
    color: #222;
    cursor: pointer;
    border: 1px solid #111111;
}

.category-item .active {
    background-color: #111111;
    color: #fff;
}

.category-item:hover {
    background-color: #111111;
    color: #fff;
}

.simple-post-filter {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.post-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px rgba(0, 0, 0, 0.1);
}

.post-item-content {
    padding: 5px;
    border-radius: 5px;
}

.post-image-bg {
    overflow: hidden;
    border-radius: 5px;
}

.post-image-bg img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.post-title a {
    text-decoration: none;
    color: #111;
    font-size: 15px;
}

.post-meta {
    margin-top: 10px;
}

.post-meta span {
    margin-right: 10px;
    font-size: 0.9em;
}

.post-excerpt {
    margin-top: 10px;
    font-size: 0.9em;
}

.Post-title a:hover {
    color: #dd0000;
}

.Post-title a .active {
    color: #dd0000;
}
/***** read more *****/

.readmorebtn { 
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    text-decoration: none !important;
    color: #888;border: 1px solid #888;
    padding: 4px 12px;
    font-size: 12px;
    display: inline-block;
    box-sizing: border-box;
    line-height: normal !important;
    margin:15px 0 0 0px;
    
}

.readmorebtn:hover {
    background: #888;
    color:#fff;    
}

.readmorebtn:focus {
    background: #ddd;
    color:#fff;    
}

.readmorebtn:active {
    background: #888;
    color:#ccc;    
}

@media (max-width: 1200px) {
    .post-item {
        width: calc(50% - 5px);
    }
}
