@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-ink {
	--ab-accent:  #ff8a4c;
	--ab-bg:      #161816;
	--ab-name:    #f5f4f1;
	--ab-text:    #a3a59d;
	--ab-surface: #232622;
	--ab-social:  #d7d8d2;
	background: var(--ab-bg);
	border-radius: 14px;
	padding: 36px;
	display: flex;
	gap: 26px;
	align-items: center;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}
.ab-ink::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 85% 15%, rgba(255,138,76,0.10), transparent 55%);
	pointer-events: none;
}
.ab-ink .avatar-frame {
	position: relative;
	width: 96px;
	height: 96px;
	flex-shrink: 0;
}
.ab-ink .avatar-frame img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
	display: block;
}
.ab-ink .avatar-frame::after {
	content: "";
	position: absolute;
	top: -6px;
	left: -6px;
	width: 24px;
	height: 24px;
	border-top: 2px solid var(--ab-accent);
	border-left: 2px solid var(--ab-accent);
	border-radius: 4px 0 0 0;
}
.ab-ink .avatar-frame::before {
	content: "";
	position: absolute;
	bottom: -6px;
	right: -6px;
	width: 24px;
	height: 24px;
	border-bottom: 2px solid var(--ab-accent);
	border-right: 2px solid var(--ab-accent);
	border-radius: 0 0 4px 0;
	z-index: 1;
}
.ab-ink .avatar-ph {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background: var(--ab-surface);
	display: flex;
	align-items: center;
	justify-content: center;
}
.ab-ink .avatar-ph svg {
	width: 42%;
	height: 42%;
	fill: #565a51;
}
.ab-ink .content { flex: 1; position: relative; min-width: 0; }
.ab-ink .role {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--ab-accent);
	margin-bottom: 6px;
	display: block;
	font-weight: 600;
}
.ab-ink h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--ab-name);
	margin: 0 0 10px;
	letter-spacing: -0.01em;
}
.ab-ink p {
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--ab-text);
	margin: 0 0 18px;
	max-width: 44ch;
}
.ab-ink .socials { display: flex; gap: 10px; }
.ab-ink .socials a {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--ab-surface);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ab-social);
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.ab-ink .socials a:hover {
	background: var(--ab-accent);
	color: var(--ab-bg);
	transform: translateY(-2px);
}
.ab-ink .socials svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

@media (max-width: 600px) {
	.ab-ink { flex-direction: column; align-items: flex-start; padding: 26px; }
}
