.directory-profile {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 750px) {
    .directory-profile {
        flex-direction: row;
    }
    .directory-profile main {
        /*flex: 2 2 0;*/
        max-width: 580px;
        flex-basis: auto;
        flex-grow: 2;
    }
    .directory-profile aside {
        margin-left: 20px;
        flex: 0 0 225px;
    }
    .directory-profile aside h2 {
        font-size: 1.8rem;
    }
}

/* Titles and Departments */
.directory-profile__info h2 {
    color: #827f7f;
    font-weight: normal;
    font-style: italic;
    margin: 0;
    font-size: 2rem;
    line-height: 1.3;
}

/* Profile image */
.directory-profile__pic .fa {
    font-size: 20rem;
    color: #c10037;
    border: 1px solid #222;
    width: 200px;
    text-align: center;
}

@media screen and (min-width: 1028px) {
    .directory-profile__info h1 {
        margin-top: 0;
    }
    .directory-profile__pic {
        float:left;
        margin-right: 15px;
        margin-bottom: 15px;
    }
    .directory-profile__contact {
        margin-left: 215px;
    }
    .directory-profile__bio {
        clear: left;
    }
}

@media screen and (max-width: 480px) {
    .directory-profile__pic img {
        width: 100%;
    }
}

/* Contact information */
.directory-profile__contact {
    overflow: auto;
}
.directory-profile__contact ul {
    font-size: 1.5rem;
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}
.directory-profile__contact label {
    font-weight: normal;
    margin: 0 5px 0 0;
    padding: 0;
}

/* Subject librarian information */
.directory-profile__subject-librarian {
    display: flex;
    flex-direction: column;
}
.directory-profile__subject-librarian h2 {
    font-style: italic;
}
.directory-profile__subject-librarian ol {
    margin-left: 2rem;
    position: relative;
    padding-left: 1rem;
}
.directory-profile__subject-librarian li {
    margin-bottom: 10px;
    line-height: 1.2;
    list-style: none;
    font-variant: all-small-caps;
    font-family: sans-serif;
}
.directory-profile__subject-librarian li:before {
    position: absolute;
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f00c";
    color: #ab0b31;
    margin-right: 5px;
    left: -10px;
}

/* Links */
.directory-profile__links {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
}
