/**
 * Who We Are
 *
 */

/* Custom Who We Are class */
.who-we-are {}

/* Directory */
.who-we-are .directory-item {
	margin-bottom: 50px;
}
.who-we-are .directory-image {
	width: 100%;
}
.who-we-are .directory-info {
	width: 100%;
    padding: 10px 0px 0px;
}
.who-we-are .directory-info p {
	margin: 0px;
}
.who-we-are .directory-image img {
	display: block;
	width: 100%;
    height: auto;
}
.who-we-are .directory-info-bottom {
	padding-top: 15px;
}

/* Adjust last row of directory items */
@media (min-width: 1024px) {
    .who-we-are .directory-item:nth-child(3n+1):nth-last-child(-n+3),
    .who-we-are .directory-item:nth-child(3n+1):nth-last-child(-n+3) ~ .directory-item {
        margin-bottom: 0px;
    }
}

/* WCM 768 Breakpoint */
@media (max-width: 1023px) {
	/* Adjust directory items */
	.who-we-are .one-third-column {
        width: 46%;
    }
    
    /* Left justify last orphan item */
    .who-we-are.directory:after {
    	content: "";
        display: block;
        width: 46%;
    }
}

/* Custom media query for between 768 and 640 */
@media (max-width: 1023px) and (min-width: 640px) {
	/* Adjust last row of directory items */
	.who-we-are .directory-item:nth-child(2n+1):nth-last-child(-n+2),
    .who-we-are .directory-item:nth-child(2n+1):nth-last-child(-n+2) ~ .directory-item {
        margin-bottom: 0px;
    }
}

/* WCM 640 Breakpoint */
@media (max-width: 767px) {
	/* Adjust directory items */
	.who-we-are .one-third-column {
        width: 45%;
    }
    
    /* Left justify last orphan item */
    .who-we-are.directory:after {
        width: 45%;
    }
}

/* WCM 480 Breakpoint */
@media (max-width: 639px) {
	/* Adjust directory items */
	.who-we-are .one-third-column {
        width: 100%;
    }
    .who-we-are.directory:after {
        display: none;
    }
    
    /* Adjust last directory item */
	.who-we-are .directory-item:last-child {
        margin-bottom: 0px;
    }
}