/*
Theme Name: Renci
Description: Styles for the Staff Directory template.
*/

#staff-list {
	width: 100%;
}

.profile-photo {
	float: left;
	margin: 0 14px 0 10px;
	min-height: 130px;
}

.profile-photo img {
	width: 150px;
}

.alternateRow-1 {
	background: #F2F2F2;
}

@media only screen and (max-width: 500px) {
	.profile-photo img {
		width: 150px;
		margin: 0 auto;
		display: block;
	}
	#staff-list td {
    	padding: 15px 30px;
    	text-align: center;
	}
	.profile-photo {
		width: 100%;
		margin: 0;
		margin-bottom: 12px;
	}
}

.letters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 90%;
	margin: 0 auto;
	margin-bottom: 1rem;
}

.letters a {
	margin: 0.25rem .1rem;
	padding: 0.2rem 0.5rem;
	width: 25px;
	display: inline-block;
	text-align: center;
	background-color: #ddd;
	color: #fff;
	text-decoration: none;
	transition: background-color 250ms;
	clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 10% 100%);
}

.letters a:hover {
	background-color: #00abc7;
	border-color: transparent;
	color: #fff;
}