/**
 * Branike SEO — Author Box frontend štýly
 * Používa CSS custom properties pre jednoduchú integráciu s témou.
 */

.bseo-author-box {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 24px;
	margin: 32px 0;
	border: 1px solid var(--bseo-border, #e5e7eb);
	border-radius: 10px;
	background: var(--bseo-author-bg, #f9fafb);
	font-size: 15px;
}

/* Avatar */
.bseo-author-avatar-wrap {
	flex-shrink: 0;
}

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

/* Info blok */
.bseo-author-info {
	flex: 1;
	min-width: 0;
}

.bseo-author-header {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}

/* Meno autora */
.bseo-author-name {
	font-size: 17px;
	font-weight: 700;
	color: var(--bseo-text, #111827);
	text-decoration: none;
}

.bseo-author-name:hover {
	text-decoration: underline;
}

/* Pozícia */
.bseo-author-job {
	font-size: 12px;
	color: var(--bseo-muted, #6b7280);
	background: var(--bseo-tag-bg, #e5e7eb);
	padding: 2px 8px;
	border-radius: 20px;
	white-space: nowrap;
}

/* Sociálne siete */
.bseo-author-socials {
	display: flex;
	gap: 6px;
	margin-left: auto;
}

.bseo-author-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: var(--bseo-social-bg, #e5e7eb);
	color: var(--bseo-text, #374151);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: background .15s;
}

.bseo-author-social:hover {
	background: var(--bseo-primary, #2563eb);
	color: #fff;
	text-decoration: none;
}

/* Odbornosť */
.bseo-author-expertise {
	margin: 0 0 8px;
	color: var(--bseo-muted-text, #4b5563);
	line-height: 1.6;
}

/* Odkaz na ďalšie príspevky */
.bseo-author-more {
	font-size: 13px;
	color: var(--bseo-link, #2563eb);
	text-decoration: none;
}

.bseo-author-more:hover {
	text-decoration: underline;
}

/* Responzivita */
@media (max-width: 560px) {
	.bseo-author-box {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 14px;
	}

	.bseo-author-header {
		justify-content: center;
	}

	.bseo-author-socials {
		margin-left: 0;
	}
}
