    
    
    
    .course-wrapper.shortcode-content{
        padding: 10px;
        --main-color: #52ae32; 
        font-size: 16px;
    }
    
    .course-wrapper.shortcode-content .courses_section{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .course-box-wrapper{
        flex-basis: 33%;
        flex-grow: 1;
        max-width: 400px;
        padding: 10px;
    }
    
    .course-box-wrapper .course-box{
        width: 100%;
        max-width: none;
        border: solid 2px lightgrey;
        border-radius: 10px;
        padding: 0;
        overflow: hidden;
        box-shadow: 0 0 10px lightgrey;
    }
    
    .course-box-wrapper .recorded-course.course-box{
        opacity: .6;
        filter: grayscale(1);
    }
    
    /*course img*/
    
    .image-course-section{
        position: relative;
        width: 100%;
        min-height: 200px;
        height: auto;
        aspect-ratio: 1.4;
    }
    
    .course-thumbnail{
        width: 100%;
        height: 100%;
        background: var(--course-thumbnail);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .label-course-box{
        position: absolute;
        right: 0;
        top: 68%;
        transform: translateY(-50%);
        background-color: white;
        color: black;
        border-radius: 10px 0 0 10px;
        padding: 1px 10px;
        font-size: .8em;
        font-weight: 600;
        transition: .1s;
        animation: colorChange 1s infinite;
    }
    
    @keyframes colorChange {
        50%{
            color: #52ae32;
            text-shadow: 1px 1px 5px lightgreen;
        }
    }
    
    
    /* course details */
    
    .course-wrapper.shortcode-content .data-course{
        display: flex;
        flex-direction: column;
        padding: 15px 10px 12px;
        gap: 20px;
    }
    
    .course-wrapper.shortcode-content .data-course .course-main-data{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .course-wrapper.shortcode-content .course-name{
        margin: 0;
        text-align: center;
        color: var(--main-color);
        font-size: 1.3em;
    }
    
    .course-wrapper.shortcode-content .course-description{
        font-size: .9em;
        padding: 0 10px;
        text-align: justify;
    }
    
    
    /* tutor field */
    
    .tutor-profile{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .tutor-img-wrapper{
        width: 3em;
        height: 3em;
    }
    
    .tutor-img{
        width: 100%;
        height: 100%;
        background: var(--tutor-img-profile);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 50%;
    }
    
    .tutor-data{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .tutor-data .tutor-name{
        color: black;
        margin: 0;
        font-size: .95em;
    }
    
    .tutor-data .tutor-position{
        font-size: .8em;
    }
    
    /* schedules */
    
    .course-schedules{
        text-align: center;
    }
    
    .course-schedules .schedules-icons{
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1em;
    }
    
    .course-schedules .schedules-icons::before, .course-schedules .schedules-icons::after{
        content: '-';
        color: var(--main-color);
        font-weight: 800;
    }
    
    .schedules-icons .icon{
        display: flex;
        width: 1.6em;
        height: 1.6em;
        font-size: 1em;
        background-color: var(--main-color);
        color: white;
        border-radius: 50%;
    }
    
    .schedules-icons .icon i{
        margin: auto;
    }
    
    /* global */
    
    .text-truncated {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: var(--lines); /* number of lines to show */
                line-clamp: var(--lines);
        -webkit-box-orient: vertical;
    }