/*
 * Author Card — 3PBiovian Customizations
 * Palette from theme.json: blue-80 #002842, blue #005994, blue-20 #EBF1F7
 * Font: Albert Sans (loaded by theme)
 */

/* ── Card wrapper ────────────────────────────────────────────────────── */
.tpbc-author-card {
	font-family: "Albert Sans", sans-serif;
	color: #002842;
	margin-bottom: 60px;
}

/* ── Header (photo + details) ────────────────────────────────────────── */
.tpbc-author-card__header {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	background-color: #EBF1F7;
	border-radius: 12px;
	padding: 2rem;
	margin-bottom: 2.5rem;
}

/* ── Photo ───────────────────────────────────────────────────────────── */
.tpbc-author-card__photo {
	flex-shrink: 0;
	width: 180px;
}

.tpbc-author-card__photo img {
	display: block;
	width: 180px;
	height: 220px;
	object-fit: cover;
	object-position: top center;
	border-radius: 8px;
}

/* ── Details column ──────────────────────────────────────────────────── */
.tpbc-author-card__details {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding-top: 0.25rem;
}

/* ── Name ────────────────────────────────────────────────────────────── */
.tpbc-author-card__name {
	font-size: 1.875rem;   /* 3xl */
	font-weight: 700;
	color: #002842;
	margin: 0;
	line-height: 1.2;
}

/* ── Meta group (honorific + role) ───────────────────────────────────── */
.tpbc-author-card__meta {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

/* ── Honorific suffix ────────────────────────────────────────────────── */
.tpbc-author-card__honorific {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.9375rem;
	font-weight: 400;
	color: #005994;
	margin: 0;
}

/* ── Role badge ──────────────────────────────────────────────────────── */
.tpbc-author-card__role {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #002842;
	margin: 0;
}

.tpbc-author-card__meta-icon {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
	color: #005994;
}

/* ── Social buttons ──────────────────────────────────────────────────── */
.tpbc-author-card__social {
	display: flex;
	gap: 0.5rem;
	margin-top: 0.25rem;
}

.tpbc-social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	background-color: #002842;
	color: #ffffff;
	border-radius: 6px;
	transition: background-color 0.2s ease;
	text-decoration: none;
}

.tpbc-social-btn:hover,
.tpbc-social-btn:focus-visible {
	background-color: #005994;
	color: #ffffff;
}

.tpbc-social-btn svg {
	width: 1.125rem;
	height: 1.125rem;
	fill: currentColor;
}

/* ── Bio content ─────────────────────────────────────────────────────── */
.tpbc-author-card__bio {
	font-size: 1rem;
	line-height: 1.7;
	color: #002842;
}

.tpbc-author-card__bio h2,
.tpbc-author-card__bio h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-top: 1.75rem;
	margin-bottom: 0.5rem;
}

.tpbc-author-card__bio ul {
	padding-left: 1.25rem;
	margin-bottom: 1rem;
}

.tpbc-author-card__bio ul li {
	margin-bottom: 0.375rem;
}

.tpbc-author-card__bio blockquote {
	border-left: 4px solid #005994;
	background-color: #EBF1F7;
	padding: 1.25rem 1.5rem;
	border-radius: 0 8px 8px 0;
	margin: 1.5rem 0;
	font-style: italic;
}

.tpbc-author-card__bio blockquote p {
	margin: 0;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 640px) {
	.tpbc-author-card__header {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 1.5rem;
	}

	.tpbc-author-card__photo img {
		width: 140px;
		height: 170px;
	}

	.tpbc-author-card__honorific,
	.tpbc-author-card__role {
		justify-content: center;
	}

	.tpbc-author-card__social {
		justify-content: center;
	}
}
