.ptw-author-block {
	display: flex;
	gap: var(--ptw-space-3);
	align-items: flex-start;
	margin-top: var(--ptw-space-6);
	padding-block: var(--ptw-space-3);
	border-top: var(--ptw-border-width-sm) solid var(--ptw-color-border);
	border-bottom: var(--ptw-border-width-sm) solid var(--ptw-color-border);
}

.ptw-author-block__avatar {
	flex: 0 0 auto;
}

.ptw-author-block__avatar img {
	display: block;
	width: 4rem;
	height: 4rem;
	border-radius: var(--ptw-radius-pill);
	object-fit: cover;
}

.ptw-author-block__content {
	display: grid;
	gap: var(--ptw-space-1);
	min-width: 0;
}

.author-profile__eyebrow {
	color: var(--ptw-color-text-secondary);
	font-size: var(--ptw-font-size-xs);
	font-weight: var(--ptw-font-weight-bold);
	line-height: var(--ptw-line-height-tight);
	text-transform: uppercase;
}

.author-profile__name {
	margin: 0;
	color: var(--ptw-color-text-primary);
	font-size: var(--ptw-font-size-md);
	font-weight: var(--ptw-font-weight-bold);
	line-height: var(--ptw-line-height-tight);
}

.author-profile__role {
	color: var(--ptw-color-text-secondary);
	font-size: var(--ptw-font-size-sm);
	font-weight: var(--ptw-font-weight-semibold);
	line-height: var(--ptw-line-height-normal);
}

.author-profile__bio {
	margin: var(--ptw-space-1) 0 0;
	color: var(--ptw-color-text-secondary);
	font-size: var(--ptw-font-size-sm);
	line-height: var(--ptw-line-height-relaxed);
}

@media (max-width: 40rem) {
	.ptw-author-block {
		flex-direction: row;
		gap: var(--ptw-space-3);
		margin-top: var(--ptw-space-5);
		padding-block: var(--ptw-space-3);
	}

	.ptw-author-block__avatar img {
		width: 3.5rem;
		height: 3.5rem;
	}
}
