/* ═══════════════════════════════════════════════════════════════════════
   AUTHOR ARCHIVE TEMPLATE
   ═══════════════════════════════════════════════════════════════════════ */

/* ── AUTHOR HEADER ───────────────────────────────────────────────────── */
.author-header {
	padding: 3rem 0;
}

.author-header-content {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
	margin-top: 2rem;
}

.author-header-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid var(--p2);
	flex-shrink: 0;
}

.author-header-info {
	flex: 1;
}

.author-header-label {
	font-family: var(--cond);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--r);
	margin-bottom: 0.5rem;
}

.author-header-name {
	font-family: var(--serif);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 600;
	color: var(--ink);
	margin: 0 0 1rem;
	line-height: 1.2;
}

.author-header-bio {
	font-family: var(--sans);
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--ink3);
	margin: 0 0 1.5rem;
	max-width: 65ch;
}

.author-header-social {
	display: flex !important;
	gap: 0.75rem !important;
	flex-wrap: wrap !important;
}

.author-header-social-link {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 40px !important;
	height: 40px !important;
	border-radius: 50% !important;
	background: var(--p2) !important;
	color: var(--ink3) !important;
	text-decoration: none !important;
	transition: all 0.2s !important;
}

.author-header-social-link:hover {
	background: var(--r) !important;
	color: white !important;
	transform: translateY(-2px) !important;
}

.author-header-social-link svg {
	flex-shrink: 0 !important;
}

/* ── SECTION HEADERS ─────────────────────────────────────────────────── */
.author-section-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--p2);
}

.author-section-title {
	font-family: var(--serif);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	color: var(--ink);
	margin: 0;
}

.author-section-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 0.75rem;
	background: var(--r);
	color: white;
	font-family: var(--cond);
	font-size: 0.875rem;
	font-weight: 700;
	border-radius: 50px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
	.author-header-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.author-header-avatar {
		width: 100px;
		height: 100px;
	}

	.author-header-bio {
		max-width: 100%;
	}

	.author-header-social {
		justify-content: center !important;
	}
}

@media (max-width: 480px) {
	.author-header {
		padding: 2rem 0;
	}

	.author-header-content {
		gap: 1.5rem;
		margin-top: 1.5rem;
	}

	.author-header-avatar {
		width: 80px;
		height: 80px;
		border-width: 3px;
	}

	.author-section-header {
		flex-wrap: wrap;
		gap: 0.75rem;
	}
}
