/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 26 2025 | 08:55:22 */
.title {
	text-align: center;
	font-size: 2.5rem;
	color: #444;
	margin-top: 30px;
}
.logo_text {
}
.header {
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.main_container {
	max-width: 75%;
	padding: 30px 60px;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	box-sizing: border-box;
}
footer {
	background-color: #f1f1f1;
	text-align: center;
	height: 60px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	p {
		line-height: 34.56px;
	}
}
#authors_container {
	max-width: 1100px;
	margin: 20px auto;
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.author_box {
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	max-width: 900px;
}
.author_image {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: #ccc;
	background-size: cover;
	background-position: center;
}
.author_name {
	font-size: 1.5rem;
	color: #333;
}
.author_bio {
	flex: 1;
	text-align: left;
	position: relative;
	/* 提供基準給連結定位 */
	padding-bottom: 30px;
}
.author_bio p {
	margin: 0 0 10px;
	color: #555;
	line-height: 1.6;
}
.author_bio a {
	position: absolute;
	bottom: 0;
	right: 0;
	color: #4caf50;
	text-decoration: none;
	font-weight: bold;
}
.author_bio a:hover {
	text-decoration: underline;
}
