/* Main container */
.cw-custom-category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Course grid layout */
.cw-course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Course card styling */
.cw-course-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.cw-course-card:hover {
    transform: translateY(-5px);
}

/* Thumbnail styling */
.cw-course-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Meta information styling */
.cw-course-meta {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8f9fa;
    font-size: 12px;
}

.cw-course-category {
    color: #2d3e50;
    font-weight: 600;
}

.cw-course-status {
    color: #6c757d;
}

/* Title styling with multiple lines */
.cw-course-title {
    padding: 15px;
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.cw-course-title span {
    display: block;
    margin-bottom: 5px;
}

/* Price styling */
.cw-course-price {
    padding: 0 15px 15px;
    font-weight: 700;
    font-size: 18px;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    margin-right: 10px;
    font-size: 14px;
}

.sale-price {
    color: #e74c3c;
}