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

.ab-chalk {
	--ab-bg:   #283830;
	--ab-name: #f7f3e8;
	--ab-role: #a8b8ab;
	--ab-text: #cdd6cc;
	background: var(--ab-bg);
	border-radius: 8px;
	padding: 38px 34px 32px;
	text-align: center;
	position: relative;
	box-shadow: 0 24px 48px -24px rgba(0,0,0,0.45);
	box-sizing: border-box;
}
.ab-chalk::before {
	content: "";
	position: absolute;
	inset: 10px;
	border: 2px dashed rgba(245,241,232,0.28);
	border-radius: 4px;
	pointer-events: none;
}
.ab-chalk .pin {
	position: absolute;
	top: -9px;
	left: 50%;
	transform: translateX(-50%);
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 30%, #ff8f6b, #c1442e 70%);
	box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.ab-chalk .avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
	margin: 8px auto 18px;
	border: 2px dashed rgba(245,241,232,0.5);
	padding: 3px;
	display: block;
	box-sizing: border-box;
}
.ab-chalk .avatar-ph {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #33453b;
	margin: 8px auto 18px;
	border: 2px dashed rgba(245,241,232,0.5);
	padding: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
.ab-chalk .avatar-ph svg { width: 42%; height: 42%; fill: #7f9385; }
.ab-chalk h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--ab-name);
	margin: 0 0 4px;
	letter-spacing: 0.01em;
	position: relative;
}
.ab-chalk .role {
	font-size: 0.82rem;
	color: var(--ab-role);
	margin: 0 0 20px;
	font-style: italic;
	position: relative;
}
.ab-chalk p.bio {
	font-size: 0.88rem;
	line-height: 1.7;
	color: var(--ab-text);
	max-width: 38ch;
	margin: 0 auto 26px;
	position: relative;
}
.ab-chalk .socials {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	position: relative;
}
.ab-chalk .socials a {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ab-name);
	text-decoration: none;
	padding: 7px 14px;
	border: 1px dashed rgba(245,241,232,0.5);
	border-radius: 999px;
	transition: background 0.15s ease, color 0.15s ease;
}
.ab-chalk .socials a:hover { background: #f7f3e8; color: var(--ab-bg); }

@media (max-width: 600px) {
	.ab-chalk { padding: 32px 24px 26px; }
}
