.mentor-link{
	display:inline-block;
	border:0;
	padding:0;
	background:transparent;
	text-decoration:none;
	line-height:0;
	cursor:pointer;
}

.mentor-link:focus,
.mentor-link:focus-visible{
	outline:none;
	box-shadow:none;
}

.mentor-img-wrap{
	position:relative;
	width:clamp(250px,18vw,320px);
	aspect-ratio:1/1;
	border-radius:50%;
	overflow:hidden;
}

.mentor-img-wrap > img{
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
	border-radius:50%;
}

.mentor-hover{
	position:absolute;
	inset:0;
	background:rgba(255,0,72,.55);
	display:flex;
	align-items:center;
	justify-content:center;
	opacity:0;
	transition:opacity .25s ease-in-out;
	pointer-events:auto;
}

.mentor-link:hover .mentor-hover{
	opacity:1;
}

.mentor-icon{
	width:72px;
	height:72px;
	display:block;
	object-fit:contain;
	filter:drop-shadow(0 2px 6px rgba(0,0,0,.35));
	pointer-events:none;
}

.modal-body {
	background:url('../img/BG_pink.jpg');
}



.mentor-bio-wrap .pink{
	color: #ff3b6a;     
	font-weight: 700;   
}

.mentor-bio-wrap{
	max-width: 900px;
	margin: 0 auto;
	padding: 30px 35px;

	background: rgba(10, 10, 20, 0.45);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);

	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.mentor-bio{
	max-width: 820px;
	margin: 0 auto;
}

.bio-row{
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 14px;
	align-items: start;
	padding: 14px 0;
	border-top: 1px solid rgba(255,255,255,.12);
}

.bio-row:first-child{
	border-top: 0;
	padding-top: 0;
}

.bio-label{
	text-align: right;
	line-height: 1.2;
}

.bio-text{
	line-height: 1.5;
	text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.mentor-bio-wrap h3{
	text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

@media (max-width: 768px){
	.bio-row{
		grid-template-columns: 1fr;
		gap: 6px;
	}
	.bio-label{
		text-align: center;
	}
	.bio-text{
		text-align: center;
	}
}