.member-item {
	background-color: $color-gray-2;
	border: 1px solid $color-gray-4;
	margin-bottom: 30px;
	min-height: 165px;
	transition: all 0.3s ease;
	text-align: center;
	@extend .clearfix;

	@include pfs('padding', (
		320px: 20px,
		1200px: 30px
	));

	&:hover {
		box-shadow: 1px 1px 10px rgba($color-gray-4, 0.8);
	}

	@media (min-width: 480px) {
		text-align: left;
	}
}

.member-item__avatar {
	width: 90px;
	height: 90px;
	overflow: hidden;
	border-radius: 50%;
	margin: auto;
	background-color: #d8d8d8;
	margin-bottom: 15px;
	position: relative;

	@media (min-width: 480px) {
		float: left;
		margin-right: 22px;
		width: 105px;
		height: 105px;
		margin-bottom: 0;
	}
}

.widget_author__avatar-placeholder {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
    font-weight: 700;
	color: #fff;
    font-size: 36px;
	@extend %font-title;
	@extend %color-white;
}

.member-item__name {
	font-weight: normal;
	margin-top: 0;
	margin-bottom: 3px;
	text-transform: capitalize;
	@extend %ellipsis;
	@extend %font-base;

	@include pfs('font-size', (
		320px: 18px,
		1200px: 22px
	));
}

.member-item__role {
	font-size: 12px;
	display: block;
	margin-bottom: 8px;

	img {
		margin-right: 3px;
	    max-width: 20px;
    	margin-top: -2px;
	}

	@media (min-width: 480px) {
		font-size: 14px;
	}
}

.member-item__total {
	margin-bottom: 5px;

	i {
		margin-right: 5px;
	}
}

.member-item__follow {
	margin-bottom: 0;
	font-size: 12px;
	font-style: italic;
	@extend %color-base;

	> span {

		&:after {
			content: '/';
			margin-left: 10px;
			margin-right: 7px;
		}

		&:last-child::after {
			content: none;
		}
	}

	@media (min-width: 480px) {
		font-size: 14px;
	}
}