.dm-author-profile {
	border-left: 1px solid var(--border);
	border-right: 1px solid var(--border);
}

.dm-author-profile__hero-inner {
	display: flex;
	align-items: flex-start;
	gap: clamp(20px, 3vw, 32px);
	max-width: 900px;
}

.dm-author-profile__avatar {
	width: 96px;
	height: 96px;
	border-radius: 20px;
	object-fit: cover;
	flex: none;
}

.dm-author-profile__avatar--initial {
	display: grid;
	place-items: center;
	font-size: 28px;
	font-weight: 600;
	color: hsl(var(--avatar-hue) 55% 30%);
	background: hsl(var(--avatar-hue) 60% 92%);
	border: 1px solid hsl(var(--avatar-hue) 45% 84%);
}

.dm-author-profile__subtitle {
	font-size: 14px;
	color: var(--text-secondary);
	margin: 6px 0 0;
}

.dm-author-profile__hero .dm-lead {
	margin-top: 16px;
	max-width: 60ch;
}

.dm-author-profile__stats {
	display: flex;
	gap: clamp(20px, 3vw, 36px);
	margin-top: 24px;
}

.dm-author-profile__stat-value {
	font-family: var(--heading-font);
	font-size: clamp(24px, 2.6vw, 32px);
	font-weight: 600;
	line-height: 1;
}

.dm-author-profile__stat-label {
	font-size: 14px;
	color: var(--text-muted);
	margin-top: 6px;
}

.dm-author-profile__links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 20px;
	font-size: 14px;
}

@media (max-width: 640px) {
	.dm-author-profile__hero-inner {
		flex-direction: column;
	}
}
