/**
 * Author Bio Styles
 */
.elementic-author-bio {
	margin: 50px 0;
	padding: 30px;
	background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
	border-radius: 12px;
	border: 1px solid #e0e0e0;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.author-bio-inner {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 25px;
	align-items: start;
}

.author-bio-avatar {
	position: relative;
}

.author-bio-avatar img {
	border-radius: 50%;
	border: 4px solid #fff;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.author-bio-avatar a:hover img,
.author-bio-avatar a:focus img {
	transform: scale(1.05);
}

.author-bio-content {
	flex: 1;
}

.author-bio-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.author-bio-name {
	margin: 0;
	font-size: 24px;
	color: #333;
}

.author-bio-name a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
}

.author-bio-name a:hover,
.author-bio-name a:focus {
	color: var(--elementic-primary-color, #ff8c00);
}

.author-bio-post-count {
	padding: 5px 12px;
	background: var(--elementic-primary-color, #ff8c00);
	color: #fff;
	font-size: 12px;
	border-radius: 20px;
	font-weight: 600;
}

.author-bio-description {
	margin: 0 0 20px;
	color: #666;
	line-height: 1.7;
}

.author-bio-description p {
	margin: 0 0 10px;
}

.author-bio-social {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}

.author-bio-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: #fff;
	color: var(--elementic-primary-color, #ff8c00);
	border: 2px solid var(--elementic-primary-color, #ff8c00);
	border-radius: 50%;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 16px;
}

.author-bio-social a:hover,
.author-bio-social a:focus {
	background: var(--elementic-primary-color, #ff8c00);
	color: #fff;
	transform: translateY(-2px);
}

.author-posts-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: var(--elementic-primary-color, #ff8c00);
	color: #fff;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.author-posts-link:hover,
.author-posts-link:focus {
	background: var(--elementic-secondary-color, #e67a00);
	transform: translateX(5px);
}

@media screen and (max-width: 768px) {
	.author-bio-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.author-bio-avatar {
		margin: 0 auto;
	}

	.author-bio-header {
		justify-content: center;
	}

	.author-bio-social {
		justify-content: center;
	}
}
