.ccs-category-cards-container {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

.ccs-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.ccs-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ccs-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.ccs-card-content {
    padding: 15px;
}

.ccs-card-content h3 {
    margin: 10px 0 5px;
}

@media (min-width: 600px) {
    .ccs-category-cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .ccs-category-cards-container {
        grid-template-columns: repeat(5, 1fr);
    }
}
