.students-speak .students-speak-section {
    width: 90%;
}

.students-speak > h1 {
    padding: 15px;
    background-color: rgba(195, 195, 195, 0.89);
}

.comment-section {
    list-style: none;
    max-width: 1200px;
    width: 100%;
    margin: 50px auto 10px auto;
    padding: 10px 2px;
}

.comment {
    display: flex;
    border-radius: 3px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.comment.left-alignment-speak {
    color: #808080;
}

.comment.right-alignment-speak {
    color: #60686d;
    justify-content: flex-end;
}

/* User and time info */

.comment .info {
    width: 25%;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
}

.comment.left-alignment-speak .info {
    text-align: right;
    padding: 15px 25px 15px 0;
}

.comment.right-alignment-speak .info {
    order: 3;
    text-align: left;
    padding: 15px 0 15px 25px;
}


.comment .info a { /* User name */
    display: block;
    text-decoration: none;
    color: #656c71;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0 3px 0;
}

.comment .info span { /* Time */
    font-size: 15px;
    color: #9ca7af;
}


/* The user avatar */

.comment .avatar {
    width: 15%;
}

.comment.left-alignment-speak .avatar {
    padding: 10px 18px 0 3px;
}

.left-alignment-speak img {
    box-shadow: 0 0 3px 3px #b93218;
}

.right-alignment-speak img {
    box-shadow: 0 0 3px 3px #00247d;

}

.comment.right-alignment-speak .avatar {
    order: 2;
    padding: 10px 3px 0 18px;
}

.comment .avatar img {
    display: block;
    border-radius: 25%;
    width: 125px;
    height: 140px;
    object-fit: cover;
}

.comment.left-alignment-speak .avatar img {
    float: right;
}


/* The comment text */

.comment p {
    line-height: 1.5;
    padding: 18px 22px;
    width: 60%;
    position: relative;
    word-wrap: break-word;
    color: rgba(26, 26, 26, 0.81);
    border-radius: 5px;
}

.comment.left-alignment-speak p {
    background-color: #b8321808;
    box-shadow: 3px 6px 5px 2px #00000012;
}

.comment.right-alignment-speak p {
    background-color: #21327e12;
    order: 1;
    box-shadow: -3px 6px 5px 2px #00000012;
}

.left-alignment-speak p:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #b93218;
    left: -8px;
    top: 18px;
}

.right-alignment-speak p:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #0d317f;
    right: -8px;
    top: 18px;
}


/* Comment form */

.write-new {
    margin: 80px auto 0;
    width: 50%;
}

.write-new textarea {
    color: #444;
    font: inherit;

    outline: 0;
    border-radius: 3px;
    border: 1px solid #cecece;
    background-color: #fefefe;
    box-shadow: 1px 2px 1px 0 rgba(0, 0, 0, 0.06);
    overflow: auto;

    width: 100%;
    min-height: 80px;
    padding: 15px 20px;
}

.write-new img {
    border-radius: 50%;
    margin-top: 15px;
}

.write-new button {
    float: right;
    background-color: #87bae1;
    box-shadow: 1px 2px 1px 0 rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    border: 0;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;

    padding: 10px 25px;
    margin-top: 18px;
}


.container.alumni-college-statement {
    width: 70%;
    padding: 2rem 1rem;
    background-color: antiquewhite;
}
/* Responsive styles */

@media (max-width: 800px) {
    /* Make the paragraph in the comments take up the whole width,
    forcing the avatar and user info to wrap to the next line*/
    .comment p {
        width: 100%;
    }

    /* Reverse the order of elements in the user comments,
    so that the avatar and info appear after the text. */
    .comment.left-alignment-speak .info {
        order: 3;
        text-align: left;
    }

    .comment.left-alignment-speak .avatar {
        order: 2;
    }

    .comment.left-alignment-speak p {
        order: 1;
    }


    /* Align toward the beginning of the container (to the left)
    all the elements inside the author comments. */
    .comment.right-alignment-speak {
        justify-content: flex-start;
    }


    .comment-section {
        margin-top: 10px;
    }

    .comment .info {
        width: auto;
    }

    .comment .info a {
        padding-top: 15px;
    }

    .comment.left-alignment-speak .avatar,
    .comment.right-alignment-speak .avatar {
        padding: 15px 10px 0 18px;
        width: auto;
    }

    .comment.left-alignment-speak p:after,
    .comment.right-alignment-speak p:after {
        width: 12px;
        height: 12px;
        top: initial;
        left: 28px;
        bottom: -6px;
    }

    .write-new {
        width: 100%;
    }

    .students-speak .container.students-speak-section {
        width: 100% !important;
        max-width: 800px !important;
    }

    .comment {
        justify-content: space-between !important;
    }
}
