/* ─── Author Box Widget ───────────────────────────────────────────────────── */

.hbc-ab-wrap {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 16px 0;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.hbc-ab-wrap:hover {
	opacity: 0.85;
}

/* ── Left: avatar + info ── */

.hbc-ab-left {
	display: flex;
	align-items: center;
	gap: 14px;
}

.hbc-ab-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50% !important;
	object-fit: cover;
	border: 2px solid #e0e0e0;
	flex-shrink: 0;
}

.hbc-ab-wrap img.hbc-ab-avatar {
	border-radius: 50% !important;
}

.hbc-ab-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.hbc-ab-name {
	font-size: 15px;
	font-weight: 600;
	color: #1a1a1a;
	line-height: 1.3;
}

.hbc-ab-role {
	font-size: 13px;
	font-weight: 400;
	color: #333333;
	line-height: 1.4;
}

.hbc-ab-expertise {
	font-size: 13px;
	font-weight: 400;
	color: #666666;
	line-height: 1.4;
}

/* ── Divider ── */

.hbc-ab-divider {
	width: 2px;
	height: 36px;
	background-color: #c19a6b;
	flex-shrink: 0;
}

/* ── Right: date + time ── */

.hbc-ab-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.hbc-ab-date {
	font-size: 16px;
	font-weight: 500;
	color: #1a1a1a;
	line-height: 1;
}

.hbc-ab-time {
	font-size: 16px;
	font-weight: 400;
	color: #666666;
	line-height: 1;
}

/* ── Responsive ── */

@media (max-width: 767px) {
	.hbc-ab-wrap {
		flex-wrap: wrap;
		gap: 16px;
	}

	.hbc-ab-right {
		gap: 12px;
	}

	.hbc-ab-date,
	.hbc-ab-time {
		font-size: 14px;
	}
}
