/**
 * Athenaeum Author Profile – single author page (matches pages/profile.html).
 *
 * @package IssueM
 */
.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile {
	--profile-bg: #f4f1ea;
	--profile-nav-bg: rgba(244, 241, 234, 0.98);
	--profile-text: #1a1a1a;
	--profile-muted: #595959;
	--profile-accent: #967542;
	--profile-border: rgba(0, 0, 0, 0.12);
	--profile-radius: 4px;
	--profile-ease: cubic-bezier(0.165, 0.84, 0.44, 1);
	--profile-card-aspect: 2 / 3;
}

@media (prefers-reduced-motion: reduce) {
	.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile * {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
	.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .pub-card:hover .pub-cover-wrapper {
		transform: none !important;
	}
}

@keyframes issuem-profile-fadeInUp {
	from { opacity: 0; transform: translateY(15px); }
	to { opacity: 1; transform: translateY(0); }
}

.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .author-hero-container .athenaeum-breadcrumb {
	grid-column: 1 / -1;
	margin-bottom: 24px;
}

.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .author-hero {
	background: #fff;
	border-bottom: 1px solid var(--profile-border);
	padding: 60px 0;
	margin-bottom: 50px;
}

.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .author-hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 40px;
	align-items: center;
}

.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .author-portrait-large {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
	border: 4px solid var(--profile-bg);
}

.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .author-info h1 {
	font-family: Georgia, serif;
	font-size: 2.5rem;
	margin-bottom: 8px;
}

.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .author-tagline {
	font-size: 0.85rem;
	color: var(--profile-accent);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	margin-bottom: 16px;
	display: block;
}

.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .author-full-bio {
	max-width: 700px;
	color: var(--profile-muted);
	font-size: 1.05rem;
	margin-bottom: 24px;
}

.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .author-stats {
	display: flex;
	gap: 30px;
	border-top: 1px solid var(--profile-bg);
	padding-top: 20px;
}

.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .stat-item {
	display: flex;
	flex-direction: column;
}

.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .stat-value {
	font-family: Georgia, serif;
	font-size: 1.5rem;
	font-weight: bold;
}

.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .stat-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	color: var(--profile-muted);
	letter-spacing: 1px;
}

.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .profile-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .section-title {
	font-family: Georgia, serif;
	font-size: 1.75rem;
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--profile-accent);
	display: inline-block;
}

.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .profile-shelf-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 48px 32px;
	margin-bottom: 80px;
}

@media (min-width: 600px) {
	.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .profile-shelf-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
}

.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .profile-shelf-grid .pub-card {
	animation: issuem-profile-fadeInUp 0.5s var(--profile-ease) both;
}

@media (max-width: 768px) {
	.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .author-hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		justify-items: center;
	}
	.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .author-full-bio {
		margin-left: auto;
		margin-right: auto;
	}
	.issuem-athenaeum.issuem-athenaeum-layout.issuem-athenaeum-profile .author-stats {
		justify-content: center;
	}
}
