/* Category Posts Widget Styles */
.cpw-posts-container {
    margin-top: 15px;
}

.cpw-post {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cpw-post:last-child {
    border-bottom: none;
}

.cpw-post-title {
    font-size: 18px;
    margin: 0 0 8px;
}

.cpw-post-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.cpw-post-title a:hover {
    color: #0073aa;
}

.cpw-post-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.cpw-post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.cpw-comments-count {
    margin-left: 15px;
}

.cpw-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cpw-pagination a {
    display: inline-block;
    padding: 5px 12px;
    margin: 0 2px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s;
}

.cpw-pagination a:hover,
.cpw-pagination a.cpw-active {
    background: #0073aa;
    color: white;
}

.cpw-pagination-prev,
.cpw-pagination-next {
    padding: 5px 15px !important;
}

.cpw-no-posts {
    text-align: center;
    padding: 20px;
    color: #777;
}