/* CSS Styles */

/* @import statements must be before any other rules */

/* BEGIN: CET Employee Directory styling */

/* Use flex display to allow nice wrapping of individual employee blocks. */
.cet-employee-directory {
	display: flex;
	flex-wrap: wrap;
}

.cet-employee-directory>div {
	flex: 1 1 200px;
	padding: 10px;
}

/* Give text a little margin, center text, etc. */
.cet-employee-directory div {
	line-height: normal;
	margin: 0.25em;
	text-align: center;
}

/* Make the employee name stand out */
.cet-employee-directory .cet-displayName {
	font-weight: bold;
}

/* Assure the missing image has the same size as other images. */
.cet-employee-directory .cet-photo img {
	width: 170px;
}

.cet-employee-directory .cet-linkedIn img {
	max-width: 32px;
}

/* END: CET Employee Directory styling */
