.faculty-item {
    text-align: center;
    margin-bottom: 2em;
}
.faculty-item h4,
.faculty-item h6 {
    color: var(--blue);
    line-height: 1.4
}
.faculty-item h6 {
    font-weight: 300;
}
.faculty-item p {
    display: none;
}
.faculty-item a {
    font-size: 1.1em;
    font-weight: 300;
    color: var(--blue);
    text-decoration: underline;
    display: inline-block;
}
.entry-content .faculty-item img {
    max-width: 220px;
    width: 100%;
    border-radius: 100%;
}

.faculty-title {
    color: var(--blue);
    border-bottom: 2px solid var(--blue);
    margin: 0 0 1em;
}


@media only screen and ( min-width: 480px ) {
    
    .leadership,
    .faculty {
        display: grid;
        grid-template-columns: repeat( 2, 1fr);
        grid-gap: 2em;
    }
}

@media only screen and ( min-width: 768px ) {
    
    .leadership {
        grid-template-columns: repeat( 1, 1fr);
        margin-bottom: 4em;
    }
    .leadership .faculty-item {
        text-align: left;
    }
    .leadership .faculty-item p {
        display: block;
    }
    .leadership .faculty-item img {
        float: right;
        margin-left: 4em;
    }
    
    .faculty {
        grid-template-columns: repeat( 3, 1fr);
    }
}

@media only screen and ( min-width: 1020px ) {
    
    .faculty {
        grid-template-columns: repeat( 4, 1fr);
    }
}