.tabbed-posts {
    width: 100%;
    margin: 20px 0;
}

.category-tabs {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin-bottom: 20px;
}

.category-tabs li {
    padding: 10px 15px;
    background: #f5f5f5;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    height: 46px;
}

.category-tabs li.active,
.category-tabs li:hover {
    background: #488CF5;
    color: white;
}

.posts-grid {
    display: grid;
    gap: 20px;
    margin-top:20px
}

.post-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.post-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

.post-item p {
    font-size: 14px;
    color: #666;
}

.pagination {
    margin-top: 20px;
    text-align: center;
}

.page-link {
    display: inline-block;
    padding: 8px 12px;
    margin: 2px;
    background: #f5f5f5;
    color: #333;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.page-link:hover,
.page-link.active {
    background: #488CF5;
    color: white;
}

ul.category-tabs {
    align-items: center;
    display: flex
;
    flex-direction: row;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    overflow-x: initial;
    -ms-overflow-style: none;
    scrollbar-width: none;
}