.courses-card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
}
.courses-card-list .msc-list-item {
    display: block;
    width: calc(50% - 15px);
    margin: 0;
}
.courses-card-list .msc-list-item:not(:last-child) {
     margin-bottom: 0;
}
.courses-card-list .mscl-item-date {
    display: flex;
    color: #e55381;
    width: auto;
    align-items: center;
}
.courses-card-list .mscl-item-date span:first-child {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
}
.courses-card-list .mscl-item-date:before {
    background-image: url(/assets/img/calendar-pink.svg);
}
.courses-card-list .mscl-item-duration {
    font-size: 15px;
}
.courses-card-list .mscl-item-cnt {
    display: flex;
    width: 100%;
    margin: 0;
    justify-content: space-between;
    gap: 10px;
}
.courses-card-list .mscl-item-img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    text-align: right;
}
.courses-card-list .mscl-item-img img:not([class]){
    margin: 0;
    max-height: 100%;
    border-radius: 0;
}
.courses-card-list .mscl-item-name {
    font-size: 20px;
    margin: 0;
    line-height: 130%;
}
.courses-card-list .mscl-item-category {
    font-size: 15px;
    margin-bottom: 30px;
}
.courses-card-list .mscl-item-price-norm,
.courses-card-list .mscl-item-price-old,
.courses-card-list .mscl-item-price-new {
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
}
.courses-card-list .mscl-item-info {
    display: flex;
    gap: 30px;
    width: 100%;
    font-size: 16px;
    justify-content: space-between;
}
.courses-card-list .mscl-item-format {
    margin: 0;
    line-height: 24px;
}
.courses-card-list .tooltip {
    padding-bottom: 0;
}
.courses-card-list .mscl-item-btm {
    margin-bottom: 10px;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .courses-card-list .msc-list-item {
        width: 100%;
    }
    .courses-card-list .mscl-item-btm > div:not(:last-child) {
        margin-right: 20px;
        margin-bottom: 0;
    }
    .courses-card-list .question-icon {
        margin-top: 0;
        margin-left: 10px;
    }
}