.cpw-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cpw-item {
    display: flex;
    align-items: flex-start;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cpw-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.cpw-item:hover .cpw-title {
    color: #0066cc;
}

.cpw-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 25px;
    margin-right: 25px;
    border-right: 2px solid #e0e0e0;
    min-width: 80px;
}

.cpw-day {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
}

.cpw-year {
    font-size: 14px;
    color: #999999;
    margin-top: 2px;
}

.cpw-content {
    flex: 1;
    min-width: 0;
}

.cpw-title {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cpw-excerpt {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cpw-no-posts {
    text-align: center;
    color: #999;
    padding: 40px;
}

/* 响应式 */
@media (max-width: 768px) {
    .cpw-item {
        padding: 20px;
    }
    
    .cpw-date {
        padding-right: 15px;
        margin-right: 15px;
        min-width: 60px;
    }
    
    .cpw-day {
        font-size: 22px;
    }
    
    .cpw-title {
        font-size: 16px;
    }
}
