#student-reviews-wrap {
    overflow: auto;
    margin: 0 auto;
}

#student-reviews-wrap,
#student-reviews-wrap * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: top;
}

.student-review-wrap {
    /* float: left;
    width: 280px; */
    margin: 10px;
    width: calc((100% / 3) - 20px);
    display: inline-block;
}

.speech-bubble h3 {
    background: none;
    padding-left: 0;
    color: #999;
}

.student-review-wrap, .student-review-wrap * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.speech-bubble {
    width: 100%;
    /* height: 180px; */
    padding: 1em;
    position: relative;
    background: #f4f4f4;
    border-radius: .4em;
    padding: 20px;
    box-sizing: border-box;

    
    min-height: 230px;
    vertical-align: top;
}
.speech-bubble a:hover {
    text-decoration: none;
}
.speech-bubble:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 0;
    height: 0;
    border: 14px solid transparent;
    border-top-color: #f4f4f4;
    border-bottom: 0;
    margin-left: -14px;
    margin-bottom: -14px;
}
.speech-bubble p{
    margin-bottom: 0;
    font-size: 12px;
}
.speech-bubble h3{
    margin-top: 0;
    margin-bottom: 1em;
    font-size: 16px;
}
.student-profile-wrap {
    position: relative;
    width: 100%;
    height: 50px;
    margin-top: 18px;
    padding-left: 50px;
}
.student-profile-image-frame {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0;
    border-radius: 25px;
    background-position: center;
    background-size: contain;
}
.student-profile-info-wrap {
    padding: 0 1em;
}
.student-profile-info-wrap .info-1 {
    font-size: 14px;
}
.student-profile-info-wrap .info-2 {
    font-size: 12px;
    color: #aaa;
}

@media screen and (max-width:768px){

    .student-review-wrap {
        width: calc((100% / 2) - 20px);
    }
}


@media screen and (max-width:640px){

    .student-review-wrap {
        width: 100%;
        margin: 0 0 30px;
    }

    .speech-bubble{
        min-height: auto;
    }
}