/* Styles for Synced Posts Archive */
.synced-posts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.synced-posts-header {
    margin-bottom: 30px;
}

.synced-posts-title {
    font-size: 32px;
    margin: 0;
}

.synced-posts-list {
    margin-bottom: 40px;
}

.synced-post-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.synced-post-title {
    font-size: 24px;
    margin: 0 0 10px 0;
    /* No links on title, as requested */
}

.synced-post-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.synced-post-excerpt {
    margin-bottom: 15px;
    line-height: 1.6;
}

.synced-post-readmore {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.synced-post-readmore:hover {
    background-color: #e5e5e5;
    text-decoration: none;
}

.synced-posts-pagination {
    margin-top: 40px;
    text-align: center;
}

.synced-posts-pagination .page-numbers {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 3px;
    border: 1px solid #ddd;
    background-color: #fff;
    text-decoration: none;
}

.synced-posts-pagination .page-numbers.current {
    background-color: #f5f5f5;
    font-weight: bold;
}

.no-posts-found {
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    text-align: center;
}