.author_box {
	margin-top: 50px;
	margin-bottom: 50px;
	overflow: hidden;
	font-size: 16px;
	line-height: 1.6em;
	background-color: #fafafa;
	padding: 30px 20px 25px;
	border: 1px solid var( --border-gray-color );
	border-radius: 10px;
}


.author_box .author {
	padding-bottom: 15px;
	border-bottom: 1px solid var( --border-gray-color );
	margin-bottom: 20px;
}

.author_box .author:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}


.author_box .image {
	float: left;
	width: 160px;
	text-align: center;
}

.author_box .image .btn {
	margin-right: 0;
	margin-top: 10px!important;
	padding: 0 10px;
	border-radius: 20px;
	font-size: 12px;
	line-height: 1.8em;
}

.author_box .title,
.author_box .description {
	float: left;
	width: calc( 100% - 160px );
	padding-left: 20px;
}

.author_box .title {
	display: table;
}

.author_box .title > * {
	display: table-cell;
	vertical-align: top;
}


.author_box .title .role {
	font-size: 14px;
	color: var( --text-gray-color );
}

.author_box .image img {
	border-radius: 50%;
}

.author_box a {
	text-decoration: none;
	color: var( --text-color );
}

.author_box a:hover {
	color: var( --link-color );
}

.author_box .social_profiles {
	float: right;
	margin-top: -5px;
}

.author_box .social_profiles .icon {
	margin-top: -4px;
}


@media( max-width: 800px ){

	.author_box {
		padding: 20px 15px 15px;
	}

	.author_box .social_profiles {
		display: block;
		float: none;
		overflow: hidden;
		text-align: center;
	}

	.author_box .social_profiles a {
		display: inline-block;
		float: none;
	}

	.author_box .image {
		width: 100%;
		float: none;
	}

	.author_box .title {
		text-align: center;
		margin-bottom: 10px;
		display: block
	}

	.author_box .title > * {
		display: block;
	}

	.author_box .title,
	.author_box .description {
		width: 100%;
		padding-left: 0;
	}

	.author_box .image .btn {
		margin-bottom: 10px;
	}

}

