@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

.ab-bold {
	--ab-bg:     #2b2f27;
	--ab-accent: #d9e05a;
	--ab-name:   #f6f7f2;
	--ab-text:   #c3c7ba;
	background: var(--ab-bg);
	border-radius: 6px;
	padding: 44px 40px 36px;
	position: relative;
	overflow: visible;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 24px;
	box-sizing: border-box;
}
.ab-bold .avatar {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid var(--ab-accent);
	position: absolute;
	top: -24px;
	left: 40px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.ab-bold .avatar-ph {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: #3a3f34;
	border: 4px solid var(--ab-accent);
	position: absolute;
	top: -24px;
	left: 40px;
	box-shadow: 0 4px 14px rgba(0,0,0,0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
.ab-bold .avatar-ph svg { width: 42%; height: 42%; fill: var(--ab-accent); }
.ab-bold .content { padding-top: 36px; }
.ab-bold .role {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--ab-accent);
	margin: 0 0 6px;
	display: block;
}
.ab-bold h3 {
	font-family: 'Fraunces', serif;
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 0.98;
	color: var(--ab-name);
	margin: 0 0 16px;
	letter-spacing: -0.02em;
}
.ab-bold p {
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--ab-text);
	margin: 0 0 20px;
	max-width: 48ch;
}
.ab-bold .socials { display: flex; gap: 0; flex-wrap: wrap; }
.ab-bold .socials a {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--ab-bg);
	background: var(--ab-accent);
	text-decoration: none;
	padding: 8px 14px;
	margin-right: 8px;
	margin-bottom: 8px;
	border-radius: 3px;
	transition: background 0.15s ease;
}
.ab-bold .socials a:hover { background: #f6f7f2; color: var(--ab-bg); }

@media (max-width: 600px) {
	.ab-bold { padding: 40px 24px 28px; margin-top: 20px; }
	.ab-bold .avatar,
	.ab-bold .avatar-ph { left: 24px; top: -22px; width: 64px; height: 64px; }
	.ab-bold h3 { font-size: 1.7rem; }
}
