/**
 * Author box for Prebo Content Autopilot — E-E-A-T compliance.
 * Theme-agnostic, integrates with Polite and other themes.
 */
.prebo-author-box {
	display: flex;
	gap: 1.25rem;
	margin: 2rem 0;
	padding: 1.5rem;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #f8fafc;
	font-family: inherit;
	line-height: 1.6;
}

.prebo-author-box__image {
	flex-shrink: 0;
}

.prebo-author-box__avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

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

.prebo-author-box__label {
	display: block;
	font-size: 0.78rem;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.15rem;
	font-weight: 500;
}

.prebo-author-box__name {
	font-size: 1.05rem;
	font-weight: 700;
	color: #1a1a2e;
	display: block;
	margin-bottom: 0.35rem;
}

.prebo-author-box__name a {
	color: inherit !important;
	text-decoration: none !important;
}

.prebo-author-box__name a:hover {
	text-decoration: underline !important;
}

.prebo-author-box__bio {
	font-size: 0.9rem;
	line-height: 1.6;
	color: #475569;
	margin: 0 0 0.6rem;
}

.prebo-author-box__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.9rem;
}

.prebo-author-box__social {
	font-size: 0.82rem;
	color: #64748b !important;
	text-decoration: none !important;
	font-weight: 500;
	transition: color 0.15s ease;
}

.prebo-author-box__social:hover {
	color: #1a1a2e !important;
	text-decoration: underline !important;
}

.prebo-author-box__disclosure {
	font-size: 0.78rem;
	color: #94a3b8;
	margin: 0.6rem 0 0;
	line-height: 1.5;
}

/* Responsive: stack vertically on small screens */
@media (max-width: 480px) {
	.prebo-author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.prebo-author-box__socials {
		justify-content: center;
	}
}
