.author-page {
	padding-bottom: 40px;
}

.author-breadcrumb-wrap {
	padding: 14px 0 0;
}

.author-hero {
	position: relative;
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
	padding: 24px;
	margin-top: 12px;
	overflow: hidden;
}

.author-photo-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 3 / 4;
	border-radius: 14px;
	background: var(--mk-cover-placeholder-bg, #e0ffe7);
	overflow: hidden;
}

.author-photo-wrap.has-photo {
	background: #f4fbf7;
}

.author-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.author-photo.is-placeholder {
	width: 50%;
	height: auto;
	object-fit: contain;
}

.author-photo-wrap .photo-status {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 10px;
	padding: 6px 8px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--g900);
	font-size: 11px;
	text-align: center;
}

.author-hero-copy h1 {
	margin: 8px 0 12px;
	font: 700 clamp(28px, 3vw, 42px) / 1.12 "Fraunces", serif;
	color: var(--g950);
}

.author-hero-copy h1 span {
	display: block;
	color: var(--g800);
}

.author-label {
	display: inline-block;
	color: var(--g800);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
}

.author-quick-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	margin-bottom: 12px;
	color: #4e5e54;
	font-size: 13px;
}

.author-hero-copy > p {
	margin: 0 0 16px;
	color: #4e5e54;
	line-height: 1.7;
	max-width: 760px;
}

.author-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 12px;
}

.author-source-note {
	padding: 10px 12px;
	border-radius: 10px;
	background: var(--g50);
	color: #5d6b62;
	font-size: 12px;
	line-height: 1.55;
	max-width: 760px;
}

.author-lotus {
	position: absolute;
	top: 18px;
	right: 18px;
	color: rgba(11, 138, 73, 0.18);
	font-size: 54px;
	line-height: 1;
	pointer-events: none;
}

.author-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	padding: 16px;
	margin-top: 16px;
}

.author-stat {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 10px;
	align-items: center;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
}

.author-stat .stat-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--g100);
	color: var(--g800);
	font-size: 18px;
}

.author-stat small {
	display: block;
	color: var(--muted);
	font-size: 11px;
}

.author-stat strong {
	display: block;
	font-size: 22px;
	line-height: 1.1;
	color: var(--g950);
}

.author-stat em {
	display: block;
	color: var(--muted);
	font-size: 11px;
	font-style: normal;
}

.author-content {
	margin-top: 16px;
	padding: 0;
	overflow: hidden;
}

.author-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 14px 14px 0;
	border-bottom: 1px solid var(--line);
}

.author-tab {
	border: 1px solid var(--line);
	border-bottom: 0;
	border-radius: 10px 10px 0 0;
	background: #f8fbf9;
	color: #4f5d55;
	padding: 10px 14px;
	font-size: 13px;
	font-weight: 650;
}

.author-tab.active {
	background: #fff;
	color: var(--g900);
}

.author-tab-panel {
	display: none;
	padding: 18px;
}

.author-tab-panel.active {
	display: block;
}

.author-layout {
	display: grid;
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 22px;
	align-items: start;
}

.author-sidebar {
	display: grid;
	gap: 14px;
}

.author-info-box {
	padding: 16px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
}

.author-info-box h2 {
	margin: 0 0 10px;
	font-size: 15px;
}

.author-info-box p {
	margin: 0 0 12px;
	color: #4e5e54;
	line-height: 1.65;
	font-size: 13px;
}

.author-check-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.author-check-list li {
	position: relative;
	padding-left: 18px;
	color: #4f5d55;
	font-size: 13px;
}

.author-check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--g800);
	font-weight: 700;
}

.author-data-list {
	margin: 0;
	display: grid;
	gap: 8px;
}

.author-data-list div {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr);
	gap: 8px;
	font-size: 13px;
}

.author-data-list dt {
	margin: 0;
	color: var(--muted);
}

.author-data-list dd {
	margin: 0;
	color: var(--ink);
	font-weight: 600;
}

.author-section-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 12px;
	margin-bottom: 14px;
}

.section-kicker {
	display: block;
	color: var(--g800);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	margin-bottom: 4px;
}

.author-section-head h2 {
	margin: 0;
	font-size: 24px;
}

.author-books-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 14px;
}

.author-book-card {
	display: flex;
	flex-direction: column;
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 4px 14px rgba(8, 92, 48, 0.04);
}

.author-book-cover {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 220px;
	margin-bottom: 10px;
	padding: 18px 14px 28px;
	border: 2px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	text-decoration: none;
}

.author-book-cover .cover-title {
	font: 700 15px/1.2 "Fraunces", serif;
	letter-spacing: 0.04em;
	white-space: pre-line;
}

.author-book-cover small {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	opacity: 0.82;
}

.author-book-cover .cover-flower {
	position: absolute;
	right: 10px;
	bottom: 8px;
	font-size: 28px;
	line-height: 1;
	opacity: 0.22;
}

.author-book-cover.cover-sage {
	background: #d8ebe0;
	border-color: #9cc3ad;
	color: #1a4332;
}

.author-book-cover.cover-paper {
	background: #f3ead8;
	border-color: #d2bf98;
	color: #3f3428;
}

.author-book-cover.cover-green {
	background: #1a5c38;
	border-color: #0f3f25;
	color: #fff;
}

.author-book-cover.cover-gold {
	background: #e8d4a8;
	border-color: #c9a96a;
	color: #3d3018;
}

.author-book-cover.cover-olive {
	background: #c5d4b0;
	border-color: #8fa076;
	color: #2a3520;
}

.author-book-cover.has-image {
	padding: 0;
	min-height: 0;
	aspect-ratio: 3 / 4;
	border-color: var(--line);
	background: var(--mk-cover-placeholder-bg, #e0ffe7);
}

.author-book-cover.has-image .cover-title,
.author-book-cover.has-image small,
.author-book-cover.has-image .cover-flower {
	display: none;
}

.author-book-cover-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-book-card h3 {
	margin: 0 0 4px;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 700;
}

.author-book-card h3 a {
	color: var(--ink);
}

.author-book-card h3 a:hover {
	color: var(--g800);
}

.author-book-card p {
	margin: 0 0 8px;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.4;
}

.author-book-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
	color: var(--muted);
	font-size: 10px;
}

.author-book-meta span {
	display: inline-flex;
	align-items: center;
	gap: 2px;
}

.author-empty-state {
	padding: 36px 20px;
	text-align: center;
}

.author-empty-state span {
	display: inline-grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--g100);
	color: var(--g800);
	font-size: 22px;
	margin-bottom: 12px;
}

.author-empty-state h2 {
	margin: 0 0 8px;
	font-size: 22px;
}

.author-empty-state p {
	margin: 0 auto 14px;
	max-width: 520px;
	color: #4e5e54;
	line-height: 1.65;
}

.author-rich-text {
	color: #4e5e54;
	line-height: 1.75;
	font-size: 15px;
}

.author-rich-text p {
	margin: 0 0 12px;
}

@media (max-width: 1080px) {
	.author-hero {
		grid-template-columns: 180px minmax(0, 1fr);
	}

	.author-layout {
		grid-template-columns: 1fr;
	}

	.author-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.author-hero {
		grid-template-columns: 1fr;
	}

	.author-photo-wrap {
		max-width: 220px;
	}

	.author-lotus {
		display: none;
	}

	.author-stats {
		grid-template-columns: 1fr;
	}

	.author-data-list div {
		grid-template-columns: 1fr;
	}
}
