.cpd-posts-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.cpd-posts-carousel {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.cpd-post-item {
    min-width: 100%;
    padding: 25px;
    box-sizing: border-box;
    background: #f9f9f9;
    margin-bottom: 20px;
    border-left: 4px solid #0073aa;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.cpd-post-title {
    color: #2c3e50;
    font-size: 22px;
    margin: 0 0 15px 0;
    font-weight: bold;
}

.cpd-post-excerpt {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cpd-read-more {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.cpd-read-more:hover {
    color: #005a87;
    text-decoration: underline;
}

.cpd-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.cpd-pagination-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 8px;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}

.cpd-pagination-button.active {
    background: #0073aa;
}

@media (max-width: 600px) {
    .cpd-post-item {
        padding: 20px;
    }
    
    .cpd-post-title {
        font-size: 20px;
    }
}