/* NewsForge author box — minimal defaults; themes restyle via the BEM classes. */
.nf-author-box {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1rem;
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: .5rem;
}

.nf-author-box__avatar {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
}

.nf-author-box__body {
	flex: 1 1 auto;
	min-width: 0;
}

.nf-author-box__name {
	margin: 0 0 .15rem;
	font-size: 1.05rem;
	line-height: 1.3;
}

.nf-author-box__verified {
	display: inline-flex;
	vertical-align: middle;
	color: #1d6fd0;
}

.nf-author-box__role {
	margin: 0 0 .5rem;
	font-size: .85rem;
	opacity: .75;
}

.nf-author-box__bio {
	margin: 0 0 .5rem;
}

.nf-author-box__expertise,
.nf-author-box__social {
	display: flex;
	flex-wrap: wrap;
	gap: .35rem;
	margin: 0 0 .5rem;
	padding: 0;
	list-style: none;
}

.nf-author-box__chip {
	padding: .1rem .5rem;
	font-size: .75rem;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 1rem;
}

.nf-author-box__social-link {
	font-size: .8rem;
	text-decoration: underline;
}

.nf-author-box__meta {
	margin: 0;
	font-size: .8rem;
	opacity: .8;
}

@media (max-width: 480px) {
	.nf-author-box {
		flex-direction: column;
	}
}
