.alumni_info_box {
    position: relative;
    min-height: 10rem;
    padding: 1rem 0.625rem;
    box-sizing: border-box;
    color: #707070;
    box-shadow: 0 1.5px 20px 0 rgba(0, 0, 0, 0.16);
    background: linear-gradient(to bottom, #ffffff, #e3e3e3);
}

.alumni_info_box .head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 85%;
    margin-top: 0.3rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #929292;
}
.alumni_info_box .head .name {
    font-size: 1.5rem;
    font-weight: 500;
}
.alumni_info_box .head .grade {
    font-size: 0.75rem;
}

.alumni_info_box .body {
    margin-top: 0.3rem;
}
.alumni_info_box .body .info {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.5;
}
.alumni_info_box .body .info ul {
    margin-left: 1rem;
    list-style: disc;
}

.alumni_info_box .decoration {
    position: absolute;
    top: -2rem;
    right: -2.1rem;
}

/* Mobile Style */
@media only screen and (max-width: 768px) {

    .page_container {
        background-color: transparent;
    }

    .position_title {
        display: none;
    }

    .info_box_container {
        width: 90%;
        margin: 0 auto;
    }

    .alumni_info_box {
        margin-top: 1.2rem;
    }

}

/* Desktop Style */
@media screen and (min-width: 769px) {

    .position_title {
        height: 1.875rem;
        margin: 0.625rem auto 3rem auto;
        padding-bottom: 2px;
        border-bottom: 2px solid white;
        font-size: 1.125rem;
        color: white;
    }

    .info_box_container {
        display: grid;
        grid-template-columns: 40% 40%;
        grid-column-gap: 2rem;
        grid-row-gap: 2.5rem;
        margin-bottom: 40px;
    }

}
