.staffList {
    margin-bottom: 3rem;
}
.staffTitle {
    font-size: 1.2em;
    font-style: italic;
}
.staffDetails {
    /* margin-bottom: 1.5rem; */
}
.staffDetails > *:not(:empty) {
    margin-bottom: .5rem;
}

.staffList {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.staff {
    width: 100%;
    background: #fff;
    box-shadow: 1px 1px 10px rgba(0,0,0, 0.4);
	margin-bottom:30px;
	display:flex;
}
.staff-wrap {
    margin: 0;
    padding: 40px;
}
.staffImage img {
    max-width: 100%;
}
.staffLinkBtn {
    display: table;
    font-size: 18px;
    text-decoration: underline !important;
	cursor:pointer;
}
.staffLinkBtn i {
	background: #e44426;
    color: #fff;
    padding: 11px 13px;
    border-radius: 35px;
    margin-left: 10px;
}

@media (min-width: 768px)
{
    .staff {
        width: calc((100% - 60px) / 3);
    }
    .staff:not(:nth-child(3n)) {
        margin-right: 30px;
    }
}
@media (max-width:767px) {
	.staff {
		height:auto !important;
	}
}