/*=========================
// id #teacherprof
==========================*/

#teacherprof {
    font-size: 1.4rem;
    margin-bottom: 2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 1.5em;
    align-items: flex-end;
}


#teacherprof h4 span {
    font-size: 0.8em;
    background: none !important;
}

#teacherprof p {
    margin-bottom: 1em;
}

#teacherprof h4 {
    color: #fff;
    background: #956f37;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: .25em 1em;
    border-radius: 2em;
}

#teacherprof .photo {
    width: 30%;
    max-width: 200px;
}

#teacherprof .photo .pc {
    display: block !important;
}

#teacherprof .photo .mob {
    display: none !important;
}

#teacherprof .photo img {
    width: 100%;
    max-width: 200px;
}

#teacherprof .txtbox {
    /* width: 73%; */
    width: 68%;
    /* margin: 0 0 0 3%; */
    text-align: start;
}

#teacherprof a {
    text-decoration: underline;
}


@media screen and (max-width: 768px) {

    /* /////// mobile ///////// */
    #teacherprof {
        display: block;
    }

    #teacherprof h4 {
        padding: .25em 0;
    }

    #teacherprof .photo {
        width: 50%;
        margin: auto auto 15px;
    }

    #teacherprof .photo .pc {
        display: none !important;
    }

    #teacherprof .photo .mob {
        display: block !important;
    }

    #teacherprof .txtbox {
        width: 100%;
        margin: 0;
    }

    #teacherprof .txtbox p,
    #teacherprof .txtbox ul {
        width: 90%;
        margin: auto;
    }
}