.ccs-carousel {padding: 10px; max-width: 600px; margin: auto;}
.ccs-item {display: flex;}
.ccs-card {
    display: flex;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    overflow: hidden;
}
.ccs-thumb img {
    width: 150px;
    height: 100px;
    object-fit: cover;
}
.ccs-content {padding: 10px;}
.ccs-date {
    font-size: 12px;
    color: #2e7d32;
    margin-bottom: 4px;
}
.ccs-title a {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}
.ccs-title a:hover {color: #0073aa;}
.ccs-excerpt {font-size: 13px; color: #555;}
.ccs-navigation {
    text-align: center;
    margin-top: 10px;
}
.ccs-button-prev,
.ccs-button-next {
    display: inline-block;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    margin: 0 5px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.ccs-button-prev:hover,
.ccs-button-next:hover {
    background: #f0f0f0;
}
@media (max-width: 768px) {
    .ccs-card {flex-direction: column;}
    .ccs-thumb img {width: 100%; height: auto;}
}
