.cc-main-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.cc-intro-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .cc-intro-col {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .cc-grid-col {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

.cc-intro-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.cc-intro-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #666;
}

.cc-intro-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cc-intro-btn:hover {
    background-color: #555;
    color: #fff;
}


.cc-grid-wrapper {
    display: grid;
    gap: 30px;
}
.cc-grid-wrapper.cc-columns-1 { grid-template-columns: 1fr; }
.cc-grid-wrapper.cc-columns-2 { grid-template-columns: repeat(2, 1fr); }
.cc-grid-wrapper.cc-columns-3 { grid-template-columns: repeat(3, 1fr); }
.cc-grid-wrapper.cc-columns-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .cc-grid-wrapper.cc-columns-3,
    .cc-grid-wrapper.cc-columns-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .cc-grid-wrapper[class*="cc-columns-"] { grid-template-columns: 1fr; }
}

.cc-grid-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.cc-thumbnail {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.cc-thumbnail a {
    display: block;
    width: 100%;
}

.cc-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.cc-grid-item:hover .cc-thumbnail img {
    transform: scale(1.05);
}

.cc-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cc-meta {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 10px;
}

.cc-title {
    margin: 0 0 15px;
    font-size: 1.25em;
    font-weight: 600;
}

.cc-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.cc-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.cc-price {
    font-weight: bold;
    color: #e53935;
}

.cc-read-more {
    font-size: 0.9em;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}
.cc-read-more:hover {
    text-decoration: underline;
}