/* Single-post specific styles — author box that mirrors the legacy synctrack layout. */

/* ── Anchor links inside the blog detail body ──
   styles.css strips link color globally, so re-apply orange primary here
   plus restore bullet markers stripped by the global ul/ol reset. */
.blog-detail-body a {
	color: var(--color-accent-orange, #ff592c);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}

.blog-detail-body a:hover,
.blog-detail-body a:focus {
	color: var(--color-text-primary, #fcfcfd);
}

.blog-detail-body ul { list-style: disc; padding-left: 22px; }
.blog-detail-body ol { list-style: decimal; padding-left: 22px; }
.blog-detail-body li::marker { color: var(--color-accent-orange, #ff592c); }



.ent-author-box {
	display: flex;
	align-items: flex-start;
	gap: 32px;
	padding: 32px;
	margin: 48px 0;
	background: #ffffff;
	color: #111111;
	border: 1px solid #d0d5dd;
	border-radius: 8px;
}

.ent-author-box .author-avatar {
	flex: 0 0 auto;
	width: 180px;
}

.ent-author-box .author-avatar img,
.ent-author-box .author-avatar .avatar {
	width: 180px;
	height: 180px;
	border-radius: 6px;
	object-fit: cover;
	display: block;
}

.ent-author-box .author-info {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.ent-author-box .author-name {
	font-size: 24px;
	font-weight: 700;
	color: #111111;
	line-height: 1.2;
	display: block;
}

.ent-author-box .author-label {
	display: inline-block;
	width: fit-content;
	background: #d6f5e9;
	color: #00a37a;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 4px 10px;
	border-radius: 4px;
	text-transform: uppercase;
}

.ent-author-box .author-bio {
	font-size: 16px;
	line-height: 1.65;
	color: #2a2f3a;
	margin: 6px 0 0;
}

.ent-author-box .author-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid #d0d5dd;
	border-radius: 4px;
	color: #111111;
	margin-top: 8px;
	transition: background 0.2s ease, color 0.2s ease;
}

.ent-author-box .author-social:hover {
	background: #111111;
	color: #ffffff;
}

@media (max-width: 640px) {
	.ent-author-box {
		flex-direction: column;
		gap: 20px;
		padding: 24px;
	}

	.ent-author-box .author-avatar,
	.ent-author-box .author-avatar img,
	.ent-author-box .author-avatar .avatar {
		width: 120px;
		height: 120px;
	}
}
