  
/* - Chat with a Student - */

#unibuddy-chat .container.u-grid3Columns {
    padding: 0rem 15px 3rem;
    grid-template-columns:1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media(min-width:992px) {
    #unibuddy-chat .container.u-grid3Columns {
        padding: 4rem 0;
        grid-template-columns: 20% 1fr 22%;
        gap: 2rem;
}
}
.chatCurrentStudent-heading h2 {
    font-weight: 100;
    text-transform: uppercase;
    font-size: 1.5rem;
    text-wrap: auto;
    color: var(--gfColors-slateText);
    position: relative;
    line-height:1.1;
}

.chatCurrentStudent-heading h2 span {
    text-transform: capitalize;
    font-family: var(--gfVars-thirstyFont);
    color: var(--gfColors-navy);
    font-size: 1.75em;
    margin-right: 10px;
    display:block;
}

.chatCurrentStudent-heading h2::after {
    position:absolute;
    content:"";
    background-image: url(/honors-program/_assets-index/[system-asset]/__template/t1/images/doodle-illustrations/gold-arrow-twisted.png[/system-asset]);
    background-repeat: no-repeat;
    background-size: cover;
    top: 0.75rem;
    right: 0rem;
    height: 102px;
    width: 77px;
    transform: rotate(-11deg);
}

@media(min-width:425px) {
    .chatCurrentStudent-heading h2 {
        max-width: none;
    }
     .chatCurrentStudent-heading h2 span {
         display:inline-block;
     }
    .chatCurrentStudent-heading h2::after {
        top: 1rem;
        right: 0rem;
        height: 113px;
        width: 85px;
        transform: rotate(-11deg);
    }
}
@media(min-width:768px) {
    .chatCurrentStudent-heading h2 {
        font-size:1.8em;
    }
}
@media(min-width:992px) {
    .chatCurrentStudent-heading h2 {
        font-size:2em;
        margin-top: 1.5rem;
    }
    .chatCurrentStudent-heading h2 span {
        display:block;
    }
    .chatCurrentStudent-heading h2::after {
        position:absolute;
        content:"";
        background-image: url(/honors-program/_assets-index/[system-asset]/__template/t1/images/doodle-illustrations/gold-arrow-twisted.png[/system-asset]);
        background-repeat: no-repeat;
        background-size: cover;
        top: 6.5rem;
        left: 6rem;
        height: 128px;
        width: 96px;
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1) rotate(65deg);
    }
}

.chatCurrentStudent-studentInfo-studentBio {
    display: grid;
    padding: 1em;
    background-color: white;
    grid-template-areas:
    "img name"
    "img major"
    "img city"
    "button button";
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
}
.chatCurrentStudent-studentInfo {
    border-bottom: 2px solid var(--gfColors-slate45);
}
.chatCurrentStudent-studentInfo-studentBio img.u-circlePhotoSimple {
    grid-area:img;
     max-width:100px;
}
@media(min-width:425px) {
    .chatCurrentStudent-studentInfo {
    border: solid 2px var(--gfColors-slate45);
    }
    .chatCurrentStudent-studentInfo-studentBio {
        border-bottom: solid 2px var(--gfColors-slate45);
    }

}

@media(min-width:540px) {
    .chatCurrentStudent-studentInfo-studentBio .button {
        max-width: fit-content;
        min-width: 285px;
    }
    .chatCurrentStudent-studentInfo-studentBio {
        grid-template-areas:
        "img name"
        "img major"
        "img city"
        "img button";
    }
        .chatCurrentStudent-studentInfo-studentBio img.u-circlePhotoSimple {
         min-width: 140px;
        align-self: center;
    }
}
.chatCurrentStudent-studentInfo-studentBio-name {
    grid-area:name
}
.chatCurrentStudent-studentInfo-studentBio-major {
    grid-area:major;
}
.chatCurrentStudent-studentInfo-studentBio-city {
    grid-area:city;
}
.chatCurrentStudent-studentInfo-studentBio .button {
    grid-area:button;
    margin-top:.5rem;
}
.chatCurrentStudent-studentInfo-studentBio-name.h4 {
    margin-block: .2rem;
}

.chatCurrentStudent-studentInfo-studentAdditional {
    padding: 1em;
}
.chatCurrentStudent-studentInfo-studentAdditional > p {
    margin-block: .75rem;
}

.chatCurrentStudent-questions {
    align-self: end;
    position: relative;
    font-size: .9em;
    text-align: center;
}
.chatCurrentStudent-questions .d-none.d-lg-block p {
    margin-block: .5rem;
    font-weight: bold;
    color: var(--gfColors-slateText);
}
@media(min-width:992px) {
    .chatCurrentStudent-questions{
        margin-bottom: 1.5em;
    }
    
    .chatCurrentStudent-questions::before {
         content:"";
         background-image:url(/honors-program/_assets-index/[system-asset]/__template/t1/images/slate-speach-bubbles.svg[/system-asset]);
         background-repeat:no-repeat;
         position:absolute;
        z-index: 1;
        width: 100%;
        height: 7rem;
        top: -7rem;
        opacity: 60%;
        left: 1rem;
    }
}