
    /* Custom Courses Display Plugin Styles */
    .ccd-courses-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-bottom: 40px;
    }
    @media (max-width: 1024px) {
        .ccd-courses-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 768px) {
        .ccd-courses-grid {
            grid-template-columns: 1fr;
        }
    }

    .ccd-course-card {
        background-color: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .ccd-thumbnail {
        height: 200px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 12px 12px 0 0;
        position: relative;
        overflow: hidden;
    }
    .ccd-thumbnail img {
        width: 100%;
        height: auto;
        display: block;
    }

    .ccd-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .ccd-course-name {
        font-size: 20px;
        font-weight: 600;
        color: #212529;
        margin: 0 0 10px;
    }

    .ccd-presented-by,
    .ccd-date-info {
        font-size: 14px;
        color: #6c757d;
        margin: 0 0 5px;
    }
    .ccd-presented-by {
        margin-bottom: 10px;
    }
    .ccd-date-info .ccd-date-label {
        font-weight: bold;
        color: #212529;
    }
    .ccd-date-info .ccd-date-value {
        color: #6c757d;
    }

    .ccd-button {
        display: inline-block;
        padding: 12px 24px;
        border-radius: 8px;
        text-align: center;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.3s;
        margin-top: auto;
    }
    .ccd-normal-card .ccd-button {
        background-color: #6c63ff;
        color: #ffffff;
    }
    .ccd-normal-card .ccd-button:hover {
        background-color: #5a54cc;
    }

    /* Featured Course Specific Styles */
    .ccd-featured-card {
        text-align: left;
    }
    .ccd-featured-card .ccd-thumbnail {
        position: relative;
        height: 200px;
    }
    .ccd-featured-card .ccd-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background-color: #8cc63f;
        color: #ffffff;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: bold;
    }
    .ccd-featured-card .ccd-price-info {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }
    .ccd-featured-card .ccd-price {
        font-size: 20px;
        font-weight: bold;
        color: #212529;
        margin-right: 8px;
    }
    .ccd-featured-card .ccd-price-old {
        color: #999;
        text-decoration: line-through;
    }
    .ccd-featured-card .ccd-presented-by {
        font-size: 14px;
        color: #6c757d;
    }
    .ccd-featured-card .ccd-date-info {
        font-size: 14px;
        color: #6c757d;
        margin-bottom: 20px;
    }
    .ccd-featured-card .ccd-button {
        background-color: #6c63ff;
        color: #ffffff;
    }
    .ccd-featured-card .ccd-button:hover {
        background-color: #5a54cc;
    }
    