/*noinspection ALL*/
.course-status-wrapper {
    display: flex;
    gap: 4px;
}
@media only screen and (max-width: 786px) {
    /*noinspection ALL*/
    .course-status-wrapper {
        flex-direction: column;
    }

    .course-status-wrapper .item:first-of-type {
        border-right: none !important;
        border-bottom: 1px solid black;
    }
    .course-status-wrapper .item:last-of-type {
        border-left: none !important;
        border-top: 1px solid black;
    }
}

.course-status-wrapper div {
    flex: 1 0 30%;
    text-align: center;
}

.course-status-wrapper .item {
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.course-status-wrapper .item:first-of-type {
    border-right: 1px solid black;
}
.course-status-wrapper .item:last-of-type {
    border-left: 1px solid black;
}

.course-status-wrapper .item .name {
    font-weight: 600;
}