/* Public Styles */

/* About Author Block */
.about-author-block {
	margin: 20px 0;
	padding: 20px;
	background-color: #f5f5f5;
	border-left: 4px solid #0073aa;
	border-radius: 3px;
}

.about-author-block .author-content {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.about-author-block .author-image {
	flex-shrink: 0;
}

.about-author-block .author-image img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
}

.about-author-block .author-info {
	flex: 1;
}

.about-author-block .author-name {
	margin: 0 0 10px 0;
	font-size: 18px;
}

.about-author-block .author-name a {
	color: #0073aa;
	text-decoration: none;
}

.about-author-block .author-name a:hover {
	text-decoration: underline;
}

.about-author-block .author-description {
	color: #666;
	line-height: 1.6;
}

/* Single Author Page */
.author-header {
	display: flex;
	gap: 30px;
	align-items: center;
	margin-bottom: 40px;
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 3px;
}

.author-header .author-thumbnail {
	flex-shrink: 0;
}

.author-header .author-thumbnail img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
}

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

.author-title {
	margin: 0;
	font-size: 32px;
	color: #333;
}

.author-content {
	margin-bottom: 40px;
	line-height: 1.8;
	color: #555;
}

.author-description {
	font-size: 16px;
}

/* Author Posts Section */
.author-posts {
	margin-top: 50px;
}

.author-posts h2 {
	font-size: 24px;
	margin-bottom: 20px;
	border-bottom: 2px solid #0073aa;
	padding-bottom: 10px;
}

.posts-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.post-item {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.post-item:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.post-item h3 {
	margin: 0;
	padding: 15px;
	font-size: 18px;
}

.post-item h3 a {
	color: #0073aa;
	text-decoration: none;
}

.post-item h3 a:hover {
	text-decoration: underline;
}

.post-thumbnail {
	overflow: hidden;
	max-height: 200px;
}

.post-thumbnail img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.post-excerpt {
	padding: 0 15px;
	color: #666;
	line-height: 1.6;
	font-size: 14px;
	margin-bottom: 10px;
}

.read-more {
	display: inline-block;
	margin: 0 15px 15px 15px;
	padding: 8px 15px;
	background-color: #0073aa;
	color: #fff;
	text-decoration: none;
	border-radius: 3px;
	transition: background-color 0.3s ease;
	font-size: 14px;
}

.read-more:hover {
	background-color: #005a87;
}

/* Responsive */
@media (max-width: 768px) {
	.author-header {
		flex-direction: column;
		text-align: center;
	}

	.author-header .author-thumbnail img {
		width: 150px;
		height: 150px;
	}

	.about-author-block .author-content {
		flex-direction: column;
	}

	.about-author-block .author-image img {
		width: 80px;
		height: 80px;
	}

	.posts-list {
		grid-template-columns: 1fr;
	}

	.author-title {
		font-size: 24px;
	}
}

