/* Blog Author */

.blog-author {
	margin: 48px 0 24px;
}

.blog-author__card {
	display: flex;
	align-items: stretch;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(50, 47, 49, 0.12);
}

.blog-author__identity-panel {
	flex: 0 0 280px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 36px 28px;
	text-align: center;
	background: #322f31;
	border-left: 6px solid #a98a5b;
}

.blog-author__avatar {
	margin-bottom: 18px;
}

.blog-author__photo {
	display: block;
	width: 144px;
	height: 144px;
	border-radius: 50%;
	border: 4px solid #a98a5b;
	object-fit: cover;
}

.blog-author__name {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	color: #ffffff;
}

.blog-author__tag {
	display: inline-block;
	margin-top: 14px;
	padding: 6px 14px;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #322f31;
	background: #a98a5b;
	border-radius: 999px;
}

.blog-author__content {
	flex: 1 1 auto;
	padding: 38px 42px;
	background: #efefef;
}

.blog-author__bio {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: #322f31;
}

.blog-author__bio p {
	margin: 0 0 1em;
}

.blog-author__bio p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.blog-author__card {
		flex-direction: column;
	}

	.blog-author__identity-panel {
		flex-basis: auto;
		padding: 30px 24px;
	}

	.blog-author__photo {
		width: 120px;
		height: 120px;
	}

	.blog-author__content {
		padding: 28px 24px;
	}
}
