table.learning-results-table {
    border-collapse: collapse;
    padding: 30px 0;
    position: relative;
}

table.learning-results-table {
    border-collapse: collapse;
}

table.learning-results-table.no-header tr.learning-row:first-child {
    border-top: 1px solid #03234b;
}

table.learning-results-table tr td::before {
    display: none;
}

.learning-table__row-wrapper {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    display: grid;
    grid-template-areas: "img title" "img description" "img info";
    grid-template-columns: 170px auto;
    row-gap: 15px;
}

.learning-table__row-wrapper .learning-table_1 {
    grid-area: img;
    display: flex;
    justify-content: center;
    align-items: center;
}

.learning-result__img-wrapper img {
    width: inherit;
    max-width: 65px;
    vertical-align: middle;
    display: inline-block;
}

.learning-result__title .learning-table_2 {
    grid-area: title;
}

.learning-result__title {
    color: #3cb4e6;
    font-size: 18px;
    font-weight: 700;
}

.learning-table__row-wrapper .learning-table_3 {
    grid-area: description;
}

@media screen and (max-width: 40em) {
    table.learning-results-table tr.learning-row {
        padding: 0;
    }
    .learning-result__img-wrapper img {
        max-height: 56px;
    }
    .learning-table__row-wrapper {
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        grid-template-areas: "img title" "description description" "info info";
        grid-template-columns: 104px auto;
        row-gap: 15px;
    }
}