.bubble {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: all ease 0.3s;
	padding-left: 12px;
	padding-right: 12px;
}

.bubble img {
	border-radius: 50%;
	object-fit: cover;
	transition: all ease 0.3s;
	width: 180px;
	height: 180px;
	border: 5px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
	position: relative;
	z-index: 1;
}

.bubble-body {
	background: #f5f3ef;
	border-radius: 18px;
	padding: 110px 20px 24px 20px;
	margin-top: -90px;
	width: 100%;
}

.name {
	margin-top: 0;
	font-family: var(--font-0);
	margin-bottom: 0;
	font-size: 1.4rem;
}

.title, .role {
	font-size: 15px;
	margin: 0;
	color: grey;
}
