.tps_postAuthorInfo {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}

.tps_postAuthorInfo a{
	color: #b09381;
	font-size: 14px;
	transition: 0.3s;
	padding-bottom: 1px;
	border-bottom: 1px solid transparent;
	text-decoration: none;
}

.tps_postAuthorInfo a:hover {
	border-bottom: 1px solid #b09381;
}

.tps_postAuthorInfo_tabs {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	border-bottom: 1px solid #ddd;
}

.tps_postAuthorInfo_tabs span {
	color: #333;
	padding: 5px 10px;
	transition: 0.3s;
	font-size: 14px;
}

.tps_postAuthorInfo_activeTab {
	background: #eee;
}

.tps_postAuthorInfo_tabs span:not(.tps_postAuthorInfo_activeTab) {
	cursor: pointer;
}

.tps_postAuthorInfo_tabs span:not(.tps_postAuthorInfo_activeTab):hover {
	cursor: pointer;
	background: #ddd;
}

.tps_postAuthorInfo_contentBox {
	display: grid;
	grid-template-columns: 80px 1fr;
	grid-gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
}

.tps_postAuthorInfo_contentBox img {
	max-width: 80px;
	height: auto;
	box-shadow: 0 1px 4px rgba(0, 0, 0, .2) !important;
	overflow: hidden !important;
	border-radius: 50% 50% 50% 50% !important;
}

.tps_postAuthorInfo_content {
	display: none;
	flex-direction: column;
}

.tps_postAuthorInfo_content p {
	margin-top: 0;
	font-size: 14px;
}

.tps_postAuthorInfo_contentActive {
	display: flex;
}

.tps_postAuthorInfo_name {
	color: #b09381;
	font-weight: bold;
	margin-bottom: 10px;
}

.tps_postAuthorInfo_onePost {
	font-size: 14px;
}

.tps_postAuthorInfo_onePost:not(:last-child) {
	margin-bottom: 10px;
}