.course {

}

.course h1 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #222;
    text-align: left;
}

.course-thumbnail{
    width: 100%;
    height: 150px;
}

.sale-badge-container{
    text-align: right;
}

.course-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    margin: 0 auto 20px;
    object-fit: cover;
}

.course p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: left;
}

.course p.price-original {
    text-decoration: line-through;
    color: #888;
}

.course p.price-sale {
    font-size: 20px;
    color: #e05678;
    font-weight: bold;
}

/* Only add a right border at ≥md */
@media (max-width: 991px) {

    .container .sale-badge-container{
        text-align: left;
    }

}


/* Only add a right border at ≥md */
@media (max-width: 767px) {
    .course-thumbnail {
        width: 80%;
        height: 200px;
        margin: auto;
    }

}


