/* Author Box - white + #d21034 + #1B263B */

.author-box {
	--author-bg: #ffffff;
	--author-accent: #d21034;
	--author-text: #1B263B;
	--author-border: #e8e8e8;

	margin-top: 2rem;
	padding: 1.5rem 0;
	border-top: 1px solid var(--author-border);
}

.author-box__label {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--author-accent);
	margin-bottom: 0.75rem;
}

.author-box__inner {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
}

.author-box__avatar {
	flex-shrink: 0;
}

.author-box__avatar img {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--author-accent);
}

.author-box__content {
	flex: 1;
	min-width: 0;
}

.author-box__name-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 0.5rem;
}

.author-box__name {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--author-text);
}

.author-box__badge {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--author-accent);
	background: rgba(210, 16, 52, 0.1);
	border: 1px solid var(--author-accent);
	border-radius: 4px;
	padding: 2px 6px;
}

.author-box__bio {
	font-size: 0.9375rem;
	color: var(--author-text);
	line-height: 1.6;
}

.author-box__bio p:first-child {
	margin-top: 0;
}

.author-box__bio p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.author-box__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.author-box__name-row {
		justify-content: center;
	}
}
