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

.ab-glass-wrap {
	background:
		radial-gradient(circle at 20% 20%, #ffd9c2 0%, transparent 45%),
		radial-gradient(circle at 85% 30%, #c7d9f5 0%, transparent 50%),
		radial-gradient(circle at 50% 90%, #d8f0d3 0%, transparent 55%),
		#f5f4f0;
	border-radius: 24px;
	padding: 56px 40px;
	display: flex;
	justify-content: center;
	box-sizing: border-box;
}
.ab-glass {
	--ab-ring-a: #ff9d6c;
	--ab-ring-b: #c7a6ff;
	--ab-ring-c: #7fd8c9;
	--ab-name:   #20221f;
	--ab-role:   #6f7369;
	--ab-text:   #464a42;
	--ab-social: #3a3d36;
	background: rgba(255,255,255,0.6);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(255,255,255,0.8);
	border-radius: 20px;
	padding: 36px 32px;
	max-width: 400px;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	box-shadow: 0 8px 32px rgba(40,40,60,0.08);
	box-sizing: border-box;
}
.ab-glass .ring {
	width: 92px;
	height: 92px;
	border-radius: 50%;
	padding: 3px;
	background: conic-gradient(from 200deg, var(--ab-ring-a), var(--ab-ring-b), var(--ab-ring-c), var(--ab-ring-a));
	flex-shrink: 0;
}
.ab-glass .ring img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #f5f4f0;
	display: block;
	box-sizing: border-box;
}
.ab-glass .ring .avatar-ph {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #f5f4f0;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
.ab-glass .ring .avatar-ph svg { width: 42%; height: 42%; fill: #c7c9c0; }
.ab-glass h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	margin: 2px 0 0;
	color: var(--ab-name);
}
.ab-glass .role { font-size: 0.8rem; color: var(--ab-role); margin: 0 0 4px; }
.ab-glass p.bio { font-size: 0.88rem; line-height: 1.6; color: var(--ab-text); margin: 0; }
.ab-glass .socials { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; justify-content: center; }
.ab-glass .socials a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255,255,255,0.7);
	border: 1px solid rgba(255,255,255,0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ab-social);
	text-decoration: none;
	transition: transform 0.15s ease, background 0.15s ease;
}
.ab-glass .socials a:hover { background: #fff; transform: translateY(-2px); }
.ab-glass .socials svg { width: 15px; height: 15px; fill: currentColor; }

@media (max-width: 600px) {
	.ab-glass-wrap { padding: 32px 18px; }
	.ab-glass { padding: 28px 22px; max-width: 100%; }
}
