.upcoming-courses-container {
    margin: 0em 1em 0em 1em;
}

.upcoming-courses-container h1 {

}
.upcoming-courses-container h1::after {
    content: ' ';
    display: block;
    margin: 16px 0;
    width: 60px;
    height: 8px;
    background: #f2e400;
}

.upcoming-course {
    display: grid;
    grid-template-columns: 80px auto;
    margin-bottom: 1em;
}

.date-div {
    text-align: center;
    grid-row: 1/3;
}

.date-div .month {
    margin: 3px 0em 0.2em 0em;
}

.date-div .day {
    margin: 0.2em 0em 0em 0em;
}

.upcoming-course-header {
    margin-left: 0.5em;
}

.title-n-time {
    display: inline-block;
}

.title-n-time h3 {
    margin: 0;
}

.title-n-time p {
    margin-top: 0.2em;
}


.upcoming-course-description {
    grid-column: 2/2;
    margin-left: 0.5em;
}

.upcoming-course-description p {
    overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 3; /* number of lines to show */
    margin: 0 0 0.5em 0;
}

.upcoming-course-read-more-btn {
    display: inline-block;
    width: 90px;
    height: 30px;
    text-align: center;
    border: 1px solid;
    line-height: 30px;
    background-color: #58636e;
    color: white;
    cursor: pointer;
}

.big-screen {
    display: none;
}

.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.upcoming-course-read-more-btn:hover {
    background-color: #58526e;
}

@media only screen and (min-width: 768px) {
    .upcoming-courses-container {
        margin: 0em auto 0em auto;
    }

    .small-screen {
        display: none;
    }

    .big-screen {
        display: inline-block;
        float: right;
    }
}